99 lines
3.5 KiB
C#
99 lines
3.5 KiB
C#
namespace ProjectAirline.Forms
|
|
{
|
|
partial class FormTicket
|
|
{
|
|
/// <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()
|
|
{
|
|
labelStatus = new Label();
|
|
checkedListBoxStatus = new CheckedListBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelStatus
|
|
//
|
|
labelStatus.AutoSize = true;
|
|
labelStatus.Location = new Point(34, 46);
|
|
labelStatus.Name = "labelStatus";
|
|
labelStatus.Size = new Size(43, 15);
|
|
labelStatus.TabIndex = 1;
|
|
labelStatus.Text = "Статус";
|
|
//
|
|
// checkedListBoxStatus
|
|
//
|
|
checkedListBoxStatus.FormattingEnabled = true;
|
|
checkedListBoxStatus.Items.AddRange(new object[] { "Оплачен", "Отменен", "Возврат Средств" });
|
|
checkedListBoxStatus.Location = new Point(103, 29);
|
|
checkedListBoxStatus.Name = "checkedListBoxStatus";
|
|
checkedListBoxStatus.Size = new Size(120, 58);
|
|
checkedListBoxStatus.TabIndex = 2;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(34, 180);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 3;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(148, 180);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 4;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// FormTicket
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(266, 270);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(checkedListBoxStatus);
|
|
Controls.Add(labelStatus);
|
|
Name = "FormTicket";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Билет";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label labelStatus;
|
|
private CheckedListBox checkedListBoxStatus;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |