namespace TypographyView { partial class FormCreateOrder { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { labelPrinted = new Label(); labelCount = new Label(); labelSum = new Label(); comboBoxPrinted = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); comboBoxClient = new ComboBox(); label1 = new Label(); SuspendLayout(); // // labelPrinted // labelPrinted.AutoSize = true; labelPrinted.Location = new Point(12, 22); labelPrinted.Name = "labelPrinted"; labelPrinted.Size = new Size(71, 20); labelPrinted.TabIndex = 0; labelPrinted.Text = "Изделие:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 94); labelCount.Name = "labelCount"; labelCount.Size = new Size(93, 20); labelCount.TabIndex = 1; labelCount.Text = "Количество:"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(12, 123); labelSum.Name = "labelSum"; labelSum.Size = new Size(58, 20); labelSum.TabIndex = 2; labelSum.Text = "Сумма:"; // // comboBoxPrinted // comboBoxPrinted.FormattingEnabled = true; comboBoxPrinted.Location = new Point(111, 19); comboBoxPrinted.Name = "comboBoxPrinted"; comboBoxPrinted.Size = new Size(238, 28); comboBoxPrinted.TabIndex = 3; comboBoxPrinted.SelectedIndexChanged += ComboBoxPrinted_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(111, 87); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(238, 27); textBoxCount.TabIndex = 4; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(111, 120); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(238, 27); textBoxSum.TabIndex = 5; // // buttonSave // buttonSave.Location = new Point(111, 189); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(117, 43); buttonSave.TabIndex = 6; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(234, 189); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(115, 43); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // comboBoxClient // comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(111, 53); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(238, 28); comboBoxClient.TabIndex = 8; // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 56); label1.Name = "label1"; label1.Size = new Size(61, 20); label1.TabIndex = 9; label1.Text = "Клиент:"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(474, 264); Controls.Add(label1); Controls.Add(comboBoxClient); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPrinted); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelPrinted); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPrinted; private Label labelCount; private Label labelSum; private ComboBox comboBoxPrinted; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; private ComboBox comboBoxClient; private Label label1; } }