PIbd-22_Safiulova_K.N._Airc.../AircraftPlant/AircraftPlantView/FormSell.Designer.cs
2024-05-06 02:41:11 +04:00

119 lines
4.0 KiB
C#

namespace AircraftPlantView
{
partial class FormSell
{
/// <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();
comboBoxPlane = new ComboBox();
textBoxCount = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelPlane
//
labelPlane.AutoSize = true;
labelPlane.Location = new Point(12, 18);
labelPlane.Name = "labelPlane";
labelPlane.Size = new Size(71, 20);
labelPlane.TabIndex = 0;
labelPlane.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 54);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// comboBoxPlane
//
comboBoxPlane.FormattingEnabled = true;
comboBoxPlane.Location = new Point(115, 15);
comboBoxPlane.Name = "comboBoxPlane";
comboBoxPlane.Size = new Size(267, 28);
comboBoxPlane.TabIndex = 2;
//
// textBoxCount
//
textBoxCount.Location = new Point(115, 54);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(267, 27);
textBoxCount.TabIndex = 3;
//
// buttonSave
//
buttonSave.Location = new Point(178, 100);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(288, 100);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 29);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormSell
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(424, 146);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPlane);
Controls.Add(labelCount);
Controls.Add(labelPlane);
Name = "FormSell";
Text = "FormSell";
Load += FormSell_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelPlane;
private Label labelCount;
private ComboBox comboBoxPlane;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}