namespace FishFactoryView { 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() { labelReinforced = new Label(); comboBoxCanned = new ComboBox(); labelCount = new Label(); textBoxCount = new TextBox(); labelSumm = new Label(); textBoxSum = new TextBox(); buttonCancel = new Button(); buttonSave = new Button(); comboBoxUser = new ComboBox(); label1 = new Label(); SuspendLayout(); // // labelReinforced // labelReinforced.AutoSize = true; labelReinforced.Location = new Point(12, 39); labelReinforced.Name = "labelReinforced"; labelReinforced.Size = new Size(59, 15); labelReinforced.TabIndex = 0; labelReinforced.Text = "Изделие: "; // // comboBoxCanned // comboBoxCanned.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxCanned.FormattingEnabled = true; comboBoxCanned.Location = new Point(103, 37); comboBoxCanned.Margin = new Padding(3, 2, 3, 2); comboBoxCanned.Name = "comboBoxCanned"; comboBoxCanned.Size = new Size(200, 23); comboBoxCanned.TabIndex = 1; comboBoxCanned.SelectedIndexChanged += ComboBoxCanned_SelectedIndexChanged; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 65); labelCount.Name = "labelCount"; labelCount.Size = new Size(78, 15); labelCount.TabIndex = 2; labelCount.Text = "Количество: "; // // textBoxCount // textBoxCount.Location = new Point(103, 62); textBoxCount.Margin = new Padding(3, 2, 3, 2); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(200, 23); textBoxCount.TabIndex = 3; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // labelSumm // labelSumm.AutoSize = true; labelSumm.Location = new Point(12, 88); labelSumm.Name = "labelSumm"; labelSumm.Size = new Size(51, 15); labelSumm.TabIndex = 4; labelSumm.Text = "Сумма: "; // // textBoxSum // textBoxSum.Location = new Point(103, 88); textBoxSum.Margin = new Padding(3, 2, 3, 2); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(200, 23); textBoxSum.TabIndex = 5; textBoxSum.Click += TextBoxCount_TextChanged; // // buttonCancel // buttonCancel.Location = new Point(205, 115); buttonCancel.Margin = new Padding(3, 2, 3, 2); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(96, 24); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(103, 115); buttonSave.Margin = new Padding(3, 2, 3, 2); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(96, 24); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // comboBoxUser // comboBoxUser.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxUser.FormattingEnabled = true; comboBoxUser.Location = new Point(103, 7); comboBoxUser.Margin = new Padding(3, 2, 3, 2); comboBoxUser.Name = "comboBoxUser"; comboBoxUser.Size = new Size(200, 23); comboBoxUser.TabIndex = 9; // // label1 // label1.AutoSize = true; label1.Location = new Point(12, 9); label1.Name = "label1"; label1.Size = new Size(46, 15); label1.TabIndex = 8; label1.Text = "Клиент"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(315, 148); Controls.Add(comboBoxUser); Controls.Add(label1); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(textBoxSum); Controls.Add(labelSumm); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxCanned); Controls.Add(labelReinforced); Margin = new Padding(3, 2, 3, 2); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelReinforced; private ComboBox comboBoxCanned; private Label labelCount; private TextBox textBoxCount; private Label labelSumm; private TextBox textBoxSum; private Button buttonCancel; private Button buttonSave; private ComboBox comboBoxUser; private Label label1; } }