184 lines
6.2 KiB
C#
184 lines
6.2 KiB
C#
namespace SushiBarView
|
|
{
|
|
partial class FormCook
|
|
{
|
|
/// <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()
|
|
{
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
label3 = new Label();
|
|
label5 = new Label();
|
|
label6 = new Label();
|
|
textBoxName = new TextBox();
|
|
textBoxSurname = new TextBox();
|
|
textBoxExperience = new TextBox();
|
|
textBoxPhoneNumber = new TextBox();
|
|
textBoxPassport = new TextBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(9, 9);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(31, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Имя";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(9, 43);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(58, 15);
|
|
label2.TabIndex = 1;
|
|
label2.Text = "Фамилия";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(9, 81);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(81, 15);
|
|
label3.TabIndex = 2;
|
|
label3.Text = "Опыт работы";
|
|
//
|
|
// label5
|
|
//
|
|
label5.AutoSize = true;
|
|
label5.Location = new Point(9, 119);
|
|
label5.Name = "label5";
|
|
label5.Size = new Size(101, 15);
|
|
label5.TabIndex = 3;
|
|
label5.Text = "Номер телефона";
|
|
//
|
|
// label6
|
|
//
|
|
label6.AutoSize = true;
|
|
label6.Location = new Point(9, 157);
|
|
label6.Name = "label6";
|
|
label6.Size = new Size(99, 15);
|
|
label6.TabIndex = 4;
|
|
label6.Text = "Номер паспорта";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(116, 6);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(181, 23);
|
|
textBoxName.TabIndex = 5;
|
|
//
|
|
// textBoxSurname
|
|
//
|
|
textBoxSurname.Location = new Point(116, 40);
|
|
textBoxSurname.Name = "textBoxSurname";
|
|
textBoxSurname.Size = new Size(181, 23);
|
|
textBoxSurname.TabIndex = 6;
|
|
//
|
|
// textBoxExperience
|
|
//
|
|
textBoxExperience.Location = new Point(116, 78);
|
|
textBoxExperience.Name = "textBoxExperience";
|
|
textBoxExperience.Size = new Size(181, 23);
|
|
textBoxExperience.TabIndex = 7;
|
|
//
|
|
// textBoxPhoneNumber
|
|
//
|
|
textBoxPhoneNumber.Location = new Point(116, 116);
|
|
textBoxPhoneNumber.Name = "textBoxPhoneNumber";
|
|
textBoxPhoneNumber.Size = new Size(181, 23);
|
|
textBoxPhoneNumber.TabIndex = 8;
|
|
//
|
|
// textBoxPassport
|
|
//
|
|
textBoxPassport.Location = new Point(116, 154);
|
|
textBoxPassport.Name = "textBoxPassport";
|
|
textBoxPassport.Size = new Size(181, 23);
|
|
textBoxPassport.TabIndex = 9;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(232, 197);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(77, 30);
|
|
buttonCancel.TabIndex = 11;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(149, 197);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(83, 30);
|
|
buttonSave.TabIndex = 10;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// FormCook
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(326, 242);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxPassport);
|
|
Controls.Add(textBoxPhoneNumber);
|
|
Controls.Add(textBoxExperience);
|
|
Controls.Add(textBoxSurname);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(label6);
|
|
Controls.Add(label5);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Name = "FormCook";
|
|
Text = "Повар";
|
|
Load += FormCook_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private Label label5;
|
|
private Label label6;
|
|
private TextBox textBoxName;
|
|
private TextBox textBoxSurname;
|
|
private TextBox textBoxExperience;
|
|
private TextBox textBoxPhoneNumber;
|
|
private TextBox textBoxPassport;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |