120 lines
4.3 KiB
C#
120 lines
4.3 KiB
C#
namespace ProjectAirline.Forms
|
|
{
|
|
partial class FormPlane
|
|
{
|
|
/// <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()
|
|
{
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
labelName = new Label();
|
|
labelCapacity = new Label();
|
|
textBoxName = new TextBox();
|
|
numericUpDownCapacity = new NumericUpDown();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownCapacity).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(49, 233);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 0;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(174, 233);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 1;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(49, 75);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(59, 15);
|
|
labelName.TabIndex = 2;
|
|
labelName.Text = "Название";
|
|
//
|
|
// labelCapacity
|
|
//
|
|
labelCapacity.AutoSize = true;
|
|
labelCapacity.Location = new Point(49, 132);
|
|
labelCapacity.Name = "labelCapacity";
|
|
labelCapacity.Size = new Size(80, 15);
|
|
labelCapacity.TabIndex = 3;
|
|
labelCapacity.Text = "Вместимость";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(174, 75);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(105, 23);
|
|
textBoxName.TabIndex = 4;
|
|
//
|
|
// numericUpDownCapacity
|
|
//
|
|
numericUpDownCapacity.Location = new Point(174, 130);
|
|
numericUpDownCapacity.Name = "numericUpDownCapacity";
|
|
numericUpDownCapacity.Size = new Size(120, 23);
|
|
numericUpDownCapacity.TabIndex = 5;
|
|
//
|
|
// FormPlane
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(325, 321);
|
|
Controls.Add(numericUpDownCapacity);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelCapacity);
|
|
Controls.Add(labelName);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Name = "FormPlane";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Самолет";
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownCapacity).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private Label labelName;
|
|
private Label labelCapacity;
|
|
private TextBox textBoxName;
|
|
private NumericUpDown numericUpDownCapacity;
|
|
}
|
|
} |