163 lines
5.6 KiB
C#

namespace ProjectAirline.Forms
{
partial class FormEmployee
{
/// <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()
{
comboBoxPost = new ComboBox();
label1 = new Label();
label2 = new Label();
label3 = new Label();
label4 = new Label();
textBoxContactInfo = new TextBox();
textBoxLastName = new TextBox();
textBoxFirstName = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// comboBoxPost
//
comboBoxPost.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxPost.FormattingEnabled = true;
comboBoxPost.Location = new Point(249, 262);
comboBoxPost.Name = "comboBoxPost";
comboBoxPost.Size = new Size(202, 28);
comboBoxPost.TabIndex = 0;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(31, 39);
label1.Name = "label1";
label1.Size = new Size(39, 20);
label1.TabIndex = 1;
label1.Text = "Имя";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(31, 96);
label2.Name = "label2";
label2.Size = new Size(73, 20);
label2.TabIndex = 2;
label2.Text = "Фамилия";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(31, 170);
label3.Name = "label3";
label3.Size = new Size(183, 20);
label3.TabIndex = 3;
label3.Text = "Контактная информация";
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(31, 265);
label4.Name = "label4";
label4.Size = new Size(86, 20);
label4.TabIndex = 4;
label4.Text = "Должность";
//
// textBoxContactInfo
//
textBoxContactInfo.Location = new Point(249, 170);
textBoxContactInfo.Name = "textBoxContactInfo";
textBoxContactInfo.Size = new Size(202, 27);
textBoxContactInfo.TabIndex = 5;
//
// textBoxLastName
//
textBoxLastName.Location = new Point(249, 94);
textBoxLastName.Name = "textBoxLastName";
textBoxLastName.Size = new Size(202, 27);
textBoxLastName.TabIndex = 6;
//
// textBoxFirstName
//
textBoxFirstName.Location = new Point(249, 38);
textBoxFirstName.Name = "textBoxFirstName";
textBoxFirstName.Size = new Size(202, 27);
textBoxFirstName.TabIndex = 7;
//
// buttonSave
//
buttonSave.Location = new Point(31, 335);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(115, 62);
buttonSave.TabIndex = 8;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(230, 335);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(116, 62);
buttonCancel.TabIndex = 9;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormEmployee
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxFirstName);
Controls.Add(textBoxLastName);
Controls.Add(textBoxContactInfo);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(comboBoxPost);
Name = "FormEmployee";
Text = "Сотрудник";
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBoxPost;
private Label label1;
private Label label2;
private Label label3;
private Label label4;
private TextBox textBoxContactInfo;
private TextBox textBoxLastName;
private TextBox textBoxFirstName;
private Button buttonSave;
private Button buttonCancel;
}
}