PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantView/FormCreateOrder.Designer.cs
2024-04-23 22:02:40 +04:00

173 lines
6.2 KiB
C#

namespace AircraftPlantView
{
partial class FormCreateOrder
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
labelPlane = new Label();
labelCount = new Label();
labelSum = new Label();
comboBoxPlane = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
ButtonSave = new Button();
ButtonCancel = new Button();
labelClient = new Label();
comboBoxClient = new ComboBox();
SuspendLayout();
//
// labelPlane
//
labelPlane.AutoSize = true;
labelPlane.Location = new Point(14, 21);
labelPlane.Name = "labelPlane";
labelPlane.Size = new Size(71, 20);
labelPlane.TabIndex = 0;
labelPlane.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 109);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(14, 154);
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// comboBoxPlane
//
comboBoxPlane.FormattingEnabled = true;
comboBoxPlane.Location = new Point(127, 13);
comboBoxPlane.Margin = new Padding(3, 4, 3, 4);
comboBoxPlane.Name = "comboBoxPlane";
comboBoxPlane.Size = new Size(277, 28);
comboBoxPlane.TabIndex = 3;
comboBoxPlane.SelectedIndexChanged += comboBoxPlane_SelectedIndexChanged;
//
// textBoxCount
//
textBoxCount.Location = new Point(127, 102);
textBoxCount.Margin = new Padding(3, 4, 3, 4);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(277, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += textBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(127, 147);
textBoxSum.Margin = new Padding(3, 4, 3, 4);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(277, 27);
textBoxSum.TabIndex = 5;
//
// ButtonSave
//
ButtonSave.Location = new Point(205, 182);
ButtonSave.Margin = new Padding(3, 4, 3, 4);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(100, 31);
ButtonSave.TabIndex = 6;
ButtonSave.Text = "Сохранить";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += buttonSave_Click;
//
// ButtonCancel
//
ButtonCancel.Location = new Point(311, 182);
ButtonCancel.Margin = new Padding(3, 4, 3, 4);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(93, 31);
ButtonCancel.TabIndex = 7;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += buttonCancel_Click;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(14, 67);
labelClient.Name = "labelClient";
labelClient.Size = new Size(61, 20);
labelClient.TabIndex = 9;
labelClient.Text = "Клиент:";
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(127, 59);
comboBoxClient.Margin = new Padding(3, 4, 3, 4);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(277, 28);
comboBoxClient.TabIndex = 10;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(436, 222);
Controls.Add(comboBoxClient);
Controls.Add(labelClient);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPlane);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelPlane);
Margin = new Padding(3, 4, 3, 4);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelPlane;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxPlane;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button ButtonSave;
private Button ButtonCancel;
private Label labelClient;
private ComboBox comboBoxClient;
}
}