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(); SuspendLayout(); // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(20, 61); labelCount.Name = "labelCount"; labelCount.Size = new Size(97, 20); labelCount.TabIndex = 1; labelCount.Text = "Количество :"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(20, 104); 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, 58); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(300, 27); textBoxCount.TabIndex = 5; textBoxCount.TextChanged += TextBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(124, 104); textBoxSum.Name = "textBoxSum"; textBoxSum.ReadOnly = true; textBoxSum.Size = new Size(300, 27); textBoxSum.TabIndex = 6; // // buttonSave // buttonSave.Location = new Point(195, 153); 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, 153); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(94, 36); buttonCancel.TabIndex = 8; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormCreateOrder // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(452, 199); 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; } }