161 lines
5.8 KiB
C#
161 lines
5.8 KiB
C#
namespace ProjectGarage.Forms
|
|
{
|
|
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()
|
|
{
|
|
labelFirstName = new Label();
|
|
textBoxFirstName = new TextBox();
|
|
textBoxLastName = new TextBox();
|
|
labelLastName = new Label();
|
|
textBoxPhoneNum = new TextBox();
|
|
labelPhoneNum = new Label();
|
|
labelTruckID = new Label();
|
|
textBoxTruckID = new TextBox();
|
|
buttonSaveDriver = new Button();
|
|
buttonCancelDriver = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelFirstName
|
|
//
|
|
labelFirstName.AutoSize = true;
|
|
labelFirstName.Location = new Point(34, 24);
|
|
labelFirstName.Name = "labelFirstName";
|
|
labelFirstName.Size = new Size(39, 20);
|
|
labelFirstName.TabIndex = 0;
|
|
labelFirstName.Text = "Имя";
|
|
//
|
|
// textBoxFirstName
|
|
//
|
|
textBoxFirstName.Location = new Point(120, 24);
|
|
textBoxFirstName.Name = "textBoxFirstName";
|
|
textBoxFirstName.Size = new Size(183, 27);
|
|
textBoxFirstName.TabIndex = 1;
|
|
//
|
|
// textBoxLastName
|
|
//
|
|
textBoxLastName.Location = new Point(120, 70);
|
|
textBoxLastName.Name = "textBoxLastName";
|
|
textBoxLastName.Size = new Size(183, 27);
|
|
textBoxLastName.TabIndex = 3;
|
|
//
|
|
// labelLastName
|
|
//
|
|
labelLastName.AutoSize = true;
|
|
labelLastName.Location = new Point(20, 73);
|
|
labelLastName.Name = "labelLastName";
|
|
labelLastName.Size = new Size(73, 20);
|
|
labelLastName.TabIndex = 2;
|
|
labelLastName.Text = "Фамилия";
|
|
//
|
|
// textBoxPhoneNum
|
|
//
|
|
textBoxPhoneNum.Location = new Point(120, 115);
|
|
textBoxPhoneNum.Name = "textBoxPhoneNum";
|
|
textBoxPhoneNum.Size = new Size(183, 27);
|
|
textBoxPhoneNum.TabIndex = 5;
|
|
textBoxPhoneNum.Text = "+7";
|
|
//
|
|
// labelPhoneNum
|
|
//
|
|
labelPhoneNum.AutoSize = true;
|
|
labelPhoneNum.Location = new Point(20, 118);
|
|
labelPhoneNum.Name = "labelPhoneNum";
|
|
labelPhoneNum.Size = new Size(69, 20);
|
|
labelPhoneNum.TabIndex = 4;
|
|
labelPhoneNum.Text = "Телефон";
|
|
//
|
|
// labelTruckID
|
|
//
|
|
labelTruckID.AutoSize = true;
|
|
labelTruckID.Location = new Point(34, 164);
|
|
labelTruckID.Name = "labelTruckID";
|
|
labelTruckID.Size = new Size(44, 20);
|
|
labelTruckID.TabIndex = 6;
|
|
labelTruckID.Text = "Фура";
|
|
//
|
|
// textBoxTruckID
|
|
//
|
|
textBoxTruckID.Location = new Point(120, 164);
|
|
textBoxTruckID.Name = "textBoxTruckID";
|
|
textBoxTruckID.Size = new Size(183, 27);
|
|
textBoxTruckID.TabIndex = 7;
|
|
//
|
|
// buttonSaveDriver
|
|
//
|
|
buttonSaveDriver.Location = new Point(20, 231);
|
|
buttonSaveDriver.Name = "buttonSaveDriver";
|
|
buttonSaveDriver.Size = new Size(128, 39);
|
|
buttonSaveDriver.TabIndex = 8;
|
|
buttonSaveDriver.Text = "Сохранить";
|
|
buttonSaveDriver.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonCancelDriver
|
|
//
|
|
buttonCancelDriver.Location = new Point(175, 231);
|
|
buttonCancelDriver.Name = "buttonCancelDriver";
|
|
buttonCancelDriver.Size = new Size(128, 39);
|
|
buttonCancelDriver.TabIndex = 9;
|
|
buttonCancelDriver.Text = "Отмена";
|
|
buttonCancelDriver.UseVisualStyleBackColor = true;
|
|
//
|
|
// FormDriver
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(333, 302);
|
|
Controls.Add(buttonCancelDriver);
|
|
Controls.Add(buttonSaveDriver);
|
|
Controls.Add(textBoxTruckID);
|
|
Controls.Add(labelTruckID);
|
|
Controls.Add(textBoxPhoneNum);
|
|
Controls.Add(labelPhoneNum);
|
|
Controls.Add(textBoxLastName);
|
|
Controls.Add(labelLastName);
|
|
Controls.Add(textBoxFirstName);
|
|
Controls.Add(labelFirstName);
|
|
Name = "FormDriver";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Водитель";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelFirstName;
|
|
private TextBox textBoxFirstName;
|
|
private TextBox textBoxLastName;
|
|
private Label labelLastName;
|
|
private TextBox textBoxPhoneNum;
|
|
private Label labelPhoneNum;
|
|
private Label labelTruckID;
|
|
private TextBox textBoxTruckID;
|
|
private Button buttonSaveDriver;
|
|
private Button buttonCancelDriver;
|
|
}
|
|
} |