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() { labelCount = new Label(); labelSum = new Label(); labelReinforced = new Label(); comboBoxReinforced = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); buttonSave = new Button(); buttonCancel = new Button(); labelClient = new Label(); comboBoxClient = new ComboBox(); SuspendLayout(); // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(20, 102); labelCount.Name = "labelCount"; labelCount.Size = new Size(97, 20); labelCount.TabIndex = 1; labelCount.Text = "Количество :"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(20, 145); labelSum.Name = "labelSum"; labelSum.Size = new Size(62, 20); labelSum.TabIndex = 2; labelSum.Text = "Сумма :"; // // labelReinforced // labelReinforced.AutoSize = true; labelReinforced.Location = new Point(20, 15); labelReinforced.Name = "labelReinforced"; labelReinforced.Size = new Size(71, 20); labelReinforced.TabIndex = 3; labelReinforced.Text = "Изделие:"; // // comboBoxReinforced // comboBoxReinforced.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxReinforced.FormattingEnabled = true; comboBoxReinforced.Location = new Point(124, 12); comboBoxReinforced.Name = "comboBoxReinforced"; comboBoxReinforced.Size = new Size(300, 28); comboBoxReinforced.TabIndex = 4; comboBoxReinforced.SelectedIndexChanged += ComboBoxReinforced_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(124, 99); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(300, 27); textBoxCount.TabIndex = 5; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(124, 145); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(300, 27); textBoxSum.TabIndex = 6; // // buttonSave // buttonSave.Location = new Point(195, 194); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(94, 36); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += ButtonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(312, 194); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 36); buttonCancel.TabIndex = 8; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(20, 59); labelClient.Name = "labelClient"; labelClient.Size = new Size(61, 20); labelClient.TabIndex = 9; labelClient.Text = "Клиент:"; // // comboBoxClient // comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(124, 56); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(300, 28); comboBoxClient.TabIndex = 10; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(452, 281); Controls.Add(comboBoxClient); Controls.Add(labelClient); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxReinforced); Controls.Add(labelReinforced); Controls.Add(labelSum); Controls.Add(labelCount); Name = "FormCreateOrder"; StartPosition = FormStartPosition.CenterScreen; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelCount; private Label labelSum; private Label labelReinforced; private ComboBox comboBoxReinforced; private TextBox textBoxCount; private TextBox textBoxSum; private Button buttonSave; private Button buttonCancel; private Label labelClient; private ComboBox comboBoxClient; } }