118 lines
4.0 KiB
C#
118 lines
4.0 KiB
C#
namespace TransportCompanyView
|
|
{
|
|
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()
|
|
{
|
|
labelName = new Label();
|
|
textBoxFio = new TextBox();
|
|
textBoxPhoneNumber = new TextBox();
|
|
labelPhoneNumber = new Label();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(11, 9);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(45, 20);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "ФИО:";
|
|
//
|
|
// textBoxFio
|
|
//
|
|
textBoxFio.Location = new Point(98, 9);
|
|
textBoxFio.Name = "textBoxFio";
|
|
textBoxFio.Size = new Size(366, 27);
|
|
textBoxFio.TabIndex = 1;
|
|
//
|
|
// textBoxPhoneNumber
|
|
//
|
|
textBoxPhoneNumber.Location = new Point(98, 43);
|
|
textBoxPhoneNumber.Name = "textBoxPhoneNumber";
|
|
textBoxPhoneNumber.Size = new Size(366, 27);
|
|
textBoxPhoneNumber.TabIndex = 3;
|
|
//
|
|
// labelPhoneNumber
|
|
//
|
|
labelPhoneNumber.AutoSize = true;
|
|
labelPhoneNumber.Location = new Point(11, 43);
|
|
labelPhoneNumber.Name = "labelPhoneNumber";
|
|
labelPhoneNumber.Size = new Size(69, 20);
|
|
labelPhoneNumber.TabIndex = 2;
|
|
labelPhoneNumber.Text = "Телефон";
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(171, 91);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(130, 40);
|
|
buttonSave.TabIndex = 4;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(328, 91);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(136, 40);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormDriver
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(478, 141);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxPhoneNumber);
|
|
Controls.Add(labelPhoneNumber);
|
|
Controls.Add(textBoxFio);
|
|
Controls.Add(labelName);
|
|
Name = "FormDriver";
|
|
Text = "Водитель";
|
|
Load += FormCargo_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private TextBox textBoxFio;
|
|
private TextBox textBoxPhoneNumber;
|
|
private Label labelPhoneNumber;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |