140 lines
4.9 KiB
C#
140 lines
4.9 KiB
C#
namespace RouteGuideView
|
|
{
|
|
partial class FormDriver
|
|
{
|
|
/// <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()
|
|
{
|
|
textBoxFullName = new TextBox();
|
|
textBoxPhone = new TextBox();
|
|
textBoxExperience = new TextBox();
|
|
labelFullName = new Label();
|
|
labelPhone = new Label();
|
|
labelExperience = new Label();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxFullName
|
|
//
|
|
textBoxFullName.Location = new Point(80, 12);
|
|
textBoxFullName.Name = "textBoxFullName";
|
|
textBoxFullName.Size = new Size(292, 23);
|
|
textBoxFullName.TabIndex = 0;
|
|
//
|
|
// textBoxPhone
|
|
//
|
|
textBoxPhone.Location = new Point(80, 41);
|
|
textBoxPhone.Name = "textBoxPhone";
|
|
textBoxPhone.Size = new Size(292, 23);
|
|
textBoxPhone.TabIndex = 1;
|
|
//
|
|
// textBoxExperience
|
|
//
|
|
textBoxExperience.Location = new Point(80, 70);
|
|
textBoxExperience.Name = "textBoxExperience";
|
|
textBoxExperience.Size = new Size(292, 23);
|
|
textBoxExperience.TabIndex = 2;
|
|
//
|
|
// labelFullName
|
|
//
|
|
labelFullName.AutoSize = true;
|
|
labelFullName.Location = new Point(12, 15);
|
|
labelFullName.Name = "labelFullName";
|
|
labelFullName.Size = new Size(37, 15);
|
|
labelFullName.TabIndex = 3;
|
|
labelFullName.Text = "ФИО:";
|
|
//
|
|
// labelPhone
|
|
//
|
|
labelPhone.AutoSize = true;
|
|
labelPhone.Location = new Point(12, 44);
|
|
labelPhone.Name = "labelPhone";
|
|
labelPhone.Size = new Size(58, 15);
|
|
labelPhone.TabIndex = 4;
|
|
labelPhone.Text = "Телефон:";
|
|
//
|
|
// labelExperience
|
|
//
|
|
labelExperience.AutoSize = true;
|
|
labelExperience.Location = new Point(12, 73);
|
|
labelExperience.Name = "labelExperience";
|
|
labelExperience.Size = new Size(40, 15);
|
|
labelExperience.TabIndex = 5;
|
|
labelExperience.Text = "Опыт:";
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(297, 106);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 6;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(216, 106);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 7;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// FormDriver
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(384, 141);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(labelExperience);
|
|
Controls.Add(labelPhone);
|
|
Controls.Add(labelFullName);
|
|
Controls.Add(textBoxExperience);
|
|
Controls.Add(textBoxPhone);
|
|
Controls.Add(textBoxFullName);
|
|
Name = "FormDriver";
|
|
Text = "Водитель";
|
|
Load += FormDriver_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxFullName;
|
|
private TextBox textBoxPhone;
|
|
private TextBox textBoxExperience;
|
|
private Label labelFullName;
|
|
private Label labelPhone;
|
|
private Label labelExperience;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |