namespace AircraftPlantView { 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() { comboBoxPlane = new ComboBox(); textBoxCount = new TextBox(); textBoxSum = new TextBox(); labelPlane = new Label(); labelCount = new Label(); labelSum = new Label(); buttonCancel = new Button(); buttonSave = new Button(); comboBoxClient = new ComboBox(); labelClient = new Label(); SuspendLayout(); // // comboBoxPlane // comboBoxPlane.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPlane.FormattingEnabled = true; comboBoxPlane.Location = new Point(90, 12); comboBoxPlane.Name = "comboBoxPlane"; comboBoxPlane.Size = new Size(282, 23); comboBoxPlane.TabIndex = 0; comboBoxPlane.SelectedIndexChanged += comboBoxPlane_SelectedIndexChanged; // // textBoxCount // textBoxCount.Location = new Point(90, 73); textBoxCount.Name = "textBoxCount"; textBoxCount.Size = new Size(282, 23); textBoxCount.TabIndex = 1; textBoxCount.TextChanged += textBoxCount_TextChanged; // // textBoxSum // textBoxSum.Location = new Point(90, 99); textBoxSum.Name = "textBoxSum"; textBoxSum.Size = new Size(282, 23); textBoxSum.TabIndex = 2; // // labelPlane // labelPlane.AutoSize = true; labelPlane.Location = new Point(12, 15); labelPlane.Name = "labelPlane"; labelPlane.Size = new Size(56, 15); labelPlane.TabIndex = 3; labelPlane.Text = "Изделие:"; // // labelCount // labelCount.AutoSize = true; labelCount.Location = new Point(12, 73); labelCount.Name = "labelCount"; labelCount.Size = new Size(75, 15); labelCount.TabIndex = 4; labelCount.Text = "Количество:"; // // labelSum // labelSum.AutoSize = true; labelSum.Location = new Point(12, 102); labelSum.Name = "labelSum"; labelSum.Size = new Size(48, 15); labelSum.TabIndex = 5; labelSum.Text = "Сумма:"; // // buttonCancel // buttonCancel.Location = new Point(297, 128); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // buttonSave // buttonSave.Location = new Point(216, 128); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(75, 23); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // comboBoxClient // comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxClient.FormattingEnabled = true; comboBoxClient.Location = new Point(90, 41); comboBoxClient.Name = "comboBoxClient"; comboBoxClient.Size = new Size(282, 23); comboBoxClient.TabIndex = 8; // // labelClient // labelClient.AutoSize = true; labelClient.Location = new Point(12, 44); labelClient.Name = "labelClient"; labelClient.Size = new Size(49, 15); labelClient.TabIndex = 9; labelClient.Text = "Клиент:"; // // FormCreateOrder // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(384, 161); Controls.Add(labelClient); Controls.Add(comboBoxClient); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(labelSum); Controls.Add(labelCount); Controls.Add(labelPlane); Controls.Add(textBoxSum); Controls.Add(textBoxCount); Controls.Add(comboBoxPlane); Name = "FormCreateOrder"; Text = "Заказ"; Load += FormCreateOrder_Load; ResumeLayout(false); PerformLayout(); } #endregion private ComboBox comboBoxPlane; private TextBox textBoxCount; private TextBox textBoxSum; private Label labelPlane; private Label labelCount; private Label labelSum; private Button buttonCancel; private Button buttonSave; private ComboBox comboBoxClient; private Label labelClient; } }