119 lines
4.7 KiB
C#
119 lines
4.7 KiB
C#
namespace AircraftPlantView
|
|
{
|
|
partial class FormPlaneComponent
|
|
{
|
|
/// <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()
|
|
{
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.comboBoxComponent = new System.Windows.Forms.ComboBox();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.ButtonSave = new System.Windows.Forms.Button();
|
|
this.ButtonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 20);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(69, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Компонент";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 54);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(72, 15);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "Количество";
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
this.comboBoxComponent.FormattingEnabled = true;
|
|
this.comboBoxComponent.Location = new System.Drawing.Point(101, 17);
|
|
this.comboBoxComponent.Name = "comboBoxComponent";
|
|
this.comboBoxComponent.Size = new System.Drawing.Size(223, 23);
|
|
this.comboBoxComponent.TabIndex = 2;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(101, 51);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(223, 23);
|
|
this.textBoxCount.TabIndex = 3;
|
|
//
|
|
// ButtonSave
|
|
//
|
|
this.ButtonSave.Location = new System.Drawing.Point(155, 96);
|
|
this.ButtonSave.Name = "ButtonSave";
|
|
this.ButtonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.ButtonSave.TabIndex = 4;
|
|
this.ButtonSave.Text = "Сохранить";
|
|
this.ButtonSave.UseVisualStyleBackColor = true;
|
|
this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
this.ButtonCancel.Location = new System.Drawing.Point(249, 96);
|
|
this.ButtonCancel.Name = "ButtonCancel";
|
|
this.ButtonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.ButtonCancel.TabIndex = 5;
|
|
this.ButtonCancel.Text = "Отмена";
|
|
this.ButtonCancel.UseVisualStyleBackColor = true;
|
|
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// FormPlaneComponent
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(340, 134);
|
|
this.Controls.Add(this.ButtonCancel);
|
|
this.Controls.Add(this.ButtonSave);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.comboBoxComponent);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "FormPlaneComponent";
|
|
this.Text = "Компонент изделия";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private ComboBox comboBoxComponent;
|
|
private TextBox textBoxCount;
|
|
private Button ButtonSave;
|
|
private Button ButtonCancel;
|
|
}
|
|
} |