Dariaaaa6 eb6aaa25a6 ...
2024-11-27 00:03:35 +04:00

188 lines
9.0 KiB
C#

namespace YourNamespace.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()
{
this.labelFlightNumber = new System.Windows.Forms.Label();
this.labelDepartureDateTime = new System.Windows.Forms.Label();
this.labelArrivalDateTime = new System.Windows.Forms.Label();
this.labelPlane = new System.Windows.Forms.Label();
this.labelAirport = new System.Windows.Forms.Label();
this.numericUpDownFlightNumber = new System.Windows.Forms.NumericUpDown();
this.dateTimePickerDeparture = new System.Windows.Forms.DateTimePicker();
this.dateTimePickerArrival = new System.Windows.Forms.DateTimePicker();
this.comboBoxPlane = new System.Windows.Forms.ComboBox();
this.comboBoxAirport = new System.Windows.Forms.ComboBox();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.numericUpDownFlightNumber)).BeginInit();
this.SuspendLayout(); // Вызов SuspendLayout
//
// labelFlightNumber
//
this.labelFlightNumber.AutoSize = true;
this.labelFlightNumber.Location = new System.Drawing.Point(12, 22);
this.labelFlightNumber.Name = "labelFlightNumber";
this.labelFlightNumber.Size = new System.Drawing.Size(80, 13);
this.labelFlightNumber.TabIndex = 0;
this.labelFlightNumber.Text = "Номер рейса:";
//
// labelDepartureDateTime
//
this.labelDepartureDateTime.AutoSize = true;
this.labelDepartureDateTime.Location = new System.Drawing.Point(12, 58);
this.labelDepartureDateTime.Name = "labelDepartureDateTime";
this.labelDepartureDateTime.Size = new System.Drawing.Size(115, 13);
this.labelDepartureDateTime.TabIndex = 1;
this.labelDepartureDateTime.Text = "Дата и время вылета:";
//
// labelArrivalDateTime
//
this.labelArrivalDateTime.AutoSize = true;
this.labelArrivalDateTime.Location = new System.Drawing.Point(12, 94);
this.labelArrivalDateTime.Name = "labelArrivalDateTime";
this.labelArrivalDateTime.Size = new System.Drawing.Size(119, 13);
this.labelArrivalDateTime.TabIndex = 2;
this.labelArrivalDateTime.Text = "Дата и время прибытия:";
//
// labelPlane
//
this.labelPlane.AutoSize = true;
this.labelPlane.Location = new System.Drawing.Point(12, 130);
this.labelPlane.Name = "labelPlane";
this.labelPlane.Size = new System.Drawing.Size(54, 13);
this.labelPlane.TabIndex = 3;
this.labelPlane.Text = "Самолет:";
//
// labelAirport
//
this.labelAirport.AutoSize = true;
this.labelAirport.Location = new System.Drawing.Point(12, 166);
this.labelAirport.Name = "labelAirport";
this.labelAirport.Size = new System.Drawing.Size(59, 13);
this.labelAirport.TabIndex = 4;
this.labelAirport.Text = "Аэропорт:";
//
// numericUpDownFlightNumber
//
this.numericUpDownFlightNumber.Location = new System.Drawing.Point(133, 20);
this.numericUpDownFlightNumber.Name = "numericUpDownFlightNumber";
this.numericUpDownFlightNumber.Size = new System.Drawing.Size(150, 20);
this.numericUpDownFlightNumber.TabIndex = 5;
//
// dateTimePickerDeparture
//
this.dateTimePickerDeparture.Location = new System.Drawing.Point(133, 56);
this.dateTimePickerDeparture.Name = "dateTimePickerDeparture";
this.dateTimePickerDeparture.Size = new System.Drawing.Size(150, 20);
this.dateTimePickerDeparture.TabIndex = 6;
//
// dateTimePickerArrival
//
this.dateTimePickerArrival.Location = new System.Drawing.Point(133, 92);
this.dateTimePickerArrival.Name = "dateTimePickerArrival";
this.dateTimePickerArrival.Size = new System.Drawing.Size(150, 20);
this.dateTimePickerArrival.TabIndex = 7;
//
// comboBoxPlane
//
this.comboBoxPlane.FormattingEnabled = true;
this.comboBoxPlane.Location = new System.Drawing.Point(133, 128);
this.comboBoxPlane.Name = "comboBoxPlane";
this.comboBoxPlane.Size = new System.Drawing.Size(150, 21);
this.comboBoxPlane.TabIndex = 8;
//
// comboBoxAirport
//
this.comboBoxAirport.FormattingEnabled = true;
this.comboBoxAirport.Location = new System.Drawing.Point(133, 164);
this.comboBoxAirport.Name = "comboBoxAirport";
this.comboBoxAirport.Size = new System.Drawing.Size(150, 21);
this.comboBoxAirport.TabIndex = 9;
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(133, 200);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
this.buttonSave.TabIndex = 10;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(208, 200);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 11;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// FormFlight
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(304, 235);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.comboBoxAirport);
this.Controls.Add(this.comboBoxPlane);
this.Controls.Add(this.dateTimePickerArrival);
this.Controls.Add(this.dateTimePickerDeparture);
this.Controls.Add(this.numericUpDownFlightNumber);
this.Controls.Add(this.labelAirport);
this.Controls.Add(this.labelPlane);
this.Controls.Add(this.labelArrivalDateTime);
this.Controls.Add(this.labelDepartureDateTime);
this.Controls.Add(this.labelFlightNumber);
this.Name = "FormFlight";
this.Text = "Редактирование рейса";
((System.ComponentModel.ISupportInitialize)(this.numericUpDownFlightNumber)).EndInit();
this.ResumeLayout(false); // Вызов ResumeLayout
this.PerformLayout(); // Вызов PerformLayout
}
#endregion
private System.Windows.Forms.Label labelFlightNumber;
private System.Windows.Forms.Label labelDepartureDateTime;
private System.Windows.Forms.Label labelArrivalDateTime;
private System.Windows.Forms.Label labelPlane;
private System.Windows.Forms.Label labelAirport;
private System.Windows.Forms.NumericUpDown numericUpDownFlightNumber;
private System.Windows.Forms.DateTimePicker dateTimePickerDeparture;
private System.Windows.Forms.DateTimePicker dateTimePickerArrival;
private System.Windows.Forms.ComboBox comboBoxPlane;
private System.Windows.Forms.ComboBox comboBoxAirport;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.Button buttonCancel;
}
}