namespace PrecastConcretePlantView { 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(); comboBoxReinforced = new ComboBox(); labelCount = new Label(); textBoxCount = new TextBox(); labelSumm = new Label(); textBoxSum = new TextBox(); buttonCancel = new Button(); buttonSave = new Button(); labelClient = new Label(); ClientComboBox = new ComboBox(); SuspendLayout(); // // labelReinforced // labelReinforced.AutoSize = true; labelReinforced.Location = new Point(12, 15); labelReinforced.Name = "labelReinforced"; labelReinforced.Size = new Size(75, 20); labelReinforced.TabIndex = 0; labelReinforced.Text = "Изделие: "; // // comboBoxReinforced // comboBoxReinforced.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxReinforced.FormattingEnabled = true; comboBoxReinforced.Location = new Point(115, 12); comboBoxReinforced.Name = "comboBoxReinforced"; comboBoxReinforced.Size = new Size(228, 28); comboBoxReinforced.TabIndex = 1; comboBoxReinforced.SelectedIndexChanged += ComboBoxReinforced_SelectedIndexChanged; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(11, 48); labelCount.Name = "labelCount"; labelCount.Size = new Size(97, 20); labelCount.TabIndex = 2; labelCount.Text = "Количество: "; // // textBoxCount // textBoxCount.Location = new Point(115, 45); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(228, 27); textBoxCount.TabIndex = 3; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // labelSumm // labelSumm.AutoSize = true; labelSumm.Location = new Point(11, 83); labelSumm.Name = "labelSumm"; labelSumm.Size = new Size(62, 20); labelSumm.TabIndex = 4; labelSumm.Text = "Сумма: "; // // textBoxSum // textBoxSum.Location = new Point(115, 80); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(228, 27); textBoxSum.TabIndex = 5; textBoxSum.Click += TextBoxCount_TextChanged; // // buttonCancel // buttonCancel.Location = new Point(233, 161); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(110, 32); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // buttonSave // buttonSave.Location = new Point(116, 161); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(110, 32); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(12, 116); labelClient.Name = "labelClient"; labelClient.Size = new Size(65, 20); labelClient.TabIndex = 8; labelClient.Text = "Клиент: "; // // ClientComboBox // ClientComboBox.DropDownStyle = ComboBoxStyle.DropDownList; ClientComboBox.FormattingEnabled = true; ClientComboBox.Location = new Point(116, 113); ClientComboBox.Margin = new Padding(3, 4, 3, 4); ClientComboBox.Name = "ClientComboBox"; ClientComboBox.Size = new Size(228, 28); ClientComboBox.TabIndex = 10; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(360, 205); Controls.Add(ClientComboBox); Controls.Add(labelClient); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(textBoxSum); Controls.Add(labelSumm); Controls.Add(textBoxCount); Controls.Add(labelCount); Controls.Add(comboBoxReinforced); Controls.Add(labelReinforced); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelReinforced; private ComboBox comboBoxReinforced; private Label labelCount; private TextBox textBoxCount; private Label labelSumm; private TextBox textBoxSum; private Button buttonCancel; private Button buttonSave; private Label labelClient; private ComboBox ClientComboBox; } }