119 lines
4.5 KiB
C#
119 lines
4.5 KiB
C#
namespace ProjectAirline.Forms
|
|
{
|
|
partial class FormFlight
|
|
{
|
|
/// <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()
|
|
{
|
|
labelArrivalLocation = new Label();
|
|
textBoxArrivalLocation = new TextBox();
|
|
labelTicketPrice = new Label();
|
|
numericUpDownTicketPrice = new NumericUpDown();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownTicketPrice).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// labelArrivalLocation
|
|
//
|
|
labelArrivalLocation.AutoSize = true;
|
|
labelArrivalLocation.Location = new Point(30, 53);
|
|
labelArrivalLocation.Name = "labelArrivalLocation";
|
|
labelArrivalLocation.Size = new Size(100, 15);
|
|
labelArrivalLocation.TabIndex = 2;
|
|
labelArrivalLocation.Text = "Место прибытия";
|
|
//
|
|
// textBoxArrivalLocation
|
|
//
|
|
textBoxArrivalLocation.Location = new Point(145, 53);
|
|
textBoxArrivalLocation.Name = "textBoxArrivalLocation";
|
|
textBoxArrivalLocation.Size = new Size(100, 23);
|
|
textBoxArrivalLocation.TabIndex = 3;
|
|
//
|
|
// labelTicketPrice
|
|
//
|
|
labelTicketPrice.AutoSize = true;
|
|
labelTicketPrice.Location = new Point(30, 117);
|
|
labelTicketPrice.Name = "labelTicketPrice";
|
|
labelTicketPrice.Size = new Size(76, 15);
|
|
labelTicketPrice.TabIndex = 4;
|
|
labelTicketPrice.Text = "Цена билета";
|
|
//
|
|
// numericUpDownTicketPrice
|
|
//
|
|
numericUpDownTicketPrice.Location = new Point(145, 115);
|
|
numericUpDownTicketPrice.Name = "numericUpDownTicketPrice";
|
|
numericUpDownTicketPrice.Size = new Size(100, 23);
|
|
numericUpDownTicketPrice.TabIndex = 5;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(30, 223);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(152, 223);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormFlight
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(273, 282);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(numericUpDownTicketPrice);
|
|
Controls.Add(labelTicketPrice);
|
|
Controls.Add(textBoxArrivalLocation);
|
|
Controls.Add(labelArrivalLocation);
|
|
Name = "FormFlight";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Рейс";
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownTicketPrice).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
private Label labelArrivalLocation;
|
|
private TextBox textBoxArrivalLocation;
|
|
private Label labelTicketPrice;
|
|
private NumericUpDown numericUpDownTicketPrice;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |