ISEbd-21_Sharonov_I_A_Proje.../ProjectAirline/Forms/FormFlight.Designer.cs

119 lines
4.5 KiB
C#
Raw Normal View History

2024-11-13 00:12:08 +04:00
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()
{
2024-11-27 00:48:24 +04:00
labelArrivalLocation = new Label();
textBoxArrivalLocation = new TextBox();
labelTicketPrice = new Label();
numericUpDownTicketPrice = new NumericUpDown();
buttonSave = new Button();
buttonCancel = new Button();
((System.ComponentModel.ISupportInitialize)numericUpDownTicketPrice).BeginInit();
2024-11-13 00:12:08 +04:00
SuspendLayout();
//
2024-11-27 00:48:24 +04:00
// labelArrivalLocation
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
labelArrivalLocation.AutoSize = true;
labelArrivalLocation.Location = new Point(30, 53);
labelArrivalLocation.Name = "labelArrivalLocation";
labelArrivalLocation.Size = new Size(100, 15);
labelArrivalLocation.TabIndex = 2;
labelArrivalLocation.Text = "Место прибытия";
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
// textBoxArrivalLocation
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
textBoxArrivalLocation.Location = new Point(145, 53);
textBoxArrivalLocation.Name = "textBoxArrivalLocation";
textBoxArrivalLocation.Size = new Size(100, 23);
textBoxArrivalLocation.TabIndex = 3;
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
// labelTicketPrice
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
labelTicketPrice.AutoSize = true;
labelTicketPrice.Location = new Point(30, 117);
labelTicketPrice.Name = "labelTicketPrice";
labelTicketPrice.Size = new Size(76, 15);
labelTicketPrice.TabIndex = 4;
labelTicketPrice.Text = "Цена билета";
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
// numericUpDownTicketPrice
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
numericUpDownTicketPrice.Location = new Point(145, 115);
numericUpDownTicketPrice.Name = "numericUpDownTicketPrice";
numericUpDownTicketPrice.Size = new Size(100, 23);
numericUpDownTicketPrice.TabIndex = 5;
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
// buttonSave
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
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;
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
// buttonCancel
2024-11-13 00:12:08 +04:00
//
2024-11-27 00:48:24 +04:00
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;
2024-11-13 00:12:08 +04:00
//
// FormFlight
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(273, 282);
2024-11-27 00:48:24 +04:00
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(numericUpDownTicketPrice);
Controls.Add(labelTicketPrice);
Controls.Add(textBoxArrivalLocation);
Controls.Add(labelArrivalLocation);
2024-11-13 00:12:08 +04:00
Name = "FormFlight";
StartPosition = FormStartPosition.CenterParent;
2024-11-27 00:48:24 +04:00
Text = "Рейс";
((System.ComponentModel.ISupportInitialize)numericUpDownTicketPrice).EndInit();
2024-11-13 00:12:08 +04:00
ResumeLayout(false);
PerformLayout();
}
#endregion
2024-11-27 00:48:24 +04:00
private Label labelArrivalLocation;
private TextBox textBoxArrivalLocation;
private Label labelTicketPrice;
private NumericUpDown numericUpDownTicketPrice;
private Button buttonSave;
private Button buttonCancel;
2024-11-13 00:12:08 +04:00
}
}