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(); labelCount = new Label(); labelSum = new Label(); buttonSave = new Button(); buttonCancel = new Button(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); comboBoxReinforced = new ComboBox(); labelClient = new Label(); comboBoxClient = new ComboBox(); SuspendLayout(); // // labelReinforced // labelReinforced.AutoSize = true; labelReinforced.Location = new Point(12, 36); labelReinforced.Name = "labelReinforced"; labelReinforced.Size = new Size(53, 15); labelReinforced.TabIndex = 0; labelReinforced.Text = "Изделие"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 68); labelCount.Name = "labelCount"; labelCount.Size = new Size(72, 15); labelCount.TabIndex = 1; labelCount.Text = "Количество"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(12, 97); labelSum.Name = "labelSum"; labelSum.Size = new Size(45, 15); labelSum.TabIndex = 2; labelSum.Text = "Сумма"; // // buttonSave // buttonSave.Location = new Point(187, 123); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(87, 35); buttonSave.TabIndex = 3; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(280, 123); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(87, 35); buttonCancel.TabIndex = 4; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // textBoxCount // textBoxCount.Location = new Point(101, 65); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(266, 23); textBoxCount.TabIndex = 5; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(101, 94); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(266, 23); textBoxSum.TabIndex = 6; // // comboBoxReinforced // comboBoxReinforced.FormattingEnabled = true; comboBoxReinforced.Location = new Point(101, 36); comboBoxReinforced.Name = "comboBoxReinforced"; comboBoxReinforced.Size = new Size(266, 23); comboBoxReinforced.TabIndex = 7; comboBoxReinforced.SelectedIndexChanged += comboBoxReinforced_SelectedIndexChanged; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(12, 10); labelClient.Name = "labelClient"; labelClient.Size = new Size(46, 15); labelClient.TabIndex = 8; labelClient.Text = "Клиент"; // // comboBoxClient // comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(101, 7); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(266, 23); comboBoxClient.TabIndex = 9; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(379, 196); Controls.Add(comboBoxClient); Controls.Add(labelClient); Controls.Add(comboBoxReinforced); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(buttonCancel); Controls.Add(buttonSave); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelReinforced); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelReinforced; private Label labelCount; private Label labelSum; private Button buttonSave; private Button buttonCancel; private TextBox textBoxCount; private TextBox textBoxSum; private ComboBox comboBoxReinforced; private Label labelClient; private ComboBox comboBoxClient; } }