142 lines
5.2 KiB
C#
142 lines
5.2 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();
|
|
labelTruckID = new Label();
|
|
buttonSaveDriver = new Button();
|
|
buttonCancelDriver = new Button();
|
|
comboBoxTruckID = new ComboBox();
|
|
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 = "Фамилия";
|
|
//
|
|
// labelTruckID
|
|
//
|
|
labelTruckID.AutoSize = true;
|
|
labelTruckID.Location = new Point(34, 121);
|
|
labelTruckID.Name = "labelTruckID";
|
|
labelTruckID.Size = new Size(44, 20);
|
|
labelTruckID.TabIndex = 6;
|
|
labelTruckID.Text = "Фура";
|
|
//
|
|
// buttonSaveDriver
|
|
//
|
|
buttonSaveDriver.Location = new Point(20, 158);
|
|
buttonSaveDriver.Name = "buttonSaveDriver";
|
|
buttonSaveDriver.Size = new Size(128, 39);
|
|
buttonSaveDriver.TabIndex = 8;
|
|
buttonSaveDriver.Text = "Сохранить";
|
|
buttonSaveDriver.UseVisualStyleBackColor = true;
|
|
buttonSaveDriver.Click += ButtonSaveDriver_Click;
|
|
//
|
|
// buttonCancelDriver
|
|
//
|
|
buttonCancelDriver.Location = new Point(175, 158);
|
|
buttonCancelDriver.Name = "buttonCancelDriver";
|
|
buttonCancelDriver.Size = new Size(128, 39);
|
|
buttonCancelDriver.TabIndex = 9;
|
|
buttonCancelDriver.Text = "Отмена";
|
|
buttonCancelDriver.UseVisualStyleBackColor = true;
|
|
buttonCancelDriver.Click += ButtonCancelDriver_Click;
|
|
//
|
|
// comboBoxTruckID
|
|
//
|
|
comboBoxTruckID.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxTruckID.FormattingEnabled = true;
|
|
comboBoxTruckID.Location = new Point(120, 113);
|
|
comboBoxTruckID.Name = "comboBoxTruckID";
|
|
comboBoxTruckID.Size = new Size(183, 28);
|
|
comboBoxTruckID.TabIndex = 10;
|
|
//
|
|
// FormDriver
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(333, 218);
|
|
Controls.Add(comboBoxTruckID);
|
|
Controls.Add(buttonCancelDriver);
|
|
Controls.Add(buttonSaveDriver);
|
|
Controls.Add(labelTruckID);
|
|
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 Label labelTruckID;
|
|
private Button buttonSaveDriver;
|
|
private Button buttonCancelDriver;
|
|
private ComboBox comboBoxTruckID;
|
|
}
|
|
} |