PIbd-21_MasenkinMS_SUBD_Rou.../RouteGuide/RouteGuideView/FormTransport.Designer.cs
2024-04-05 02:48:52 +04:00

164 lines
5.8 KiB
C#

namespace RouteGuideView
{
partial class FormTransport
{
/// <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()
{
comboBoxType = new ComboBox();
comboBoxDriver = new ComboBox();
textBoxLicense = new TextBox();
textBoxCapacity = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
labelType = new Label();
labelDriver = new Label();
labelLicense = new Label();
labelCapacity = new Label();
SuspendLayout();
//
// comboBoxType
//
comboBoxType.FormattingEnabled = true;
comboBoxType.Location = new Point(101, 12);
comboBoxType.Name = "comboBoxType";
comboBoxType.Size = new Size(271, 23);
comboBoxType.TabIndex = 0;
//
// comboBoxDriver
//
comboBoxDriver.FormattingEnabled = true;
comboBoxDriver.Location = new Point(101, 41);
comboBoxDriver.Name = "comboBoxDriver";
comboBoxDriver.Size = new Size(271, 23);
comboBoxDriver.TabIndex = 1;
//
// textBoxLicense
//
textBoxLicense.Location = new Point(101, 70);
textBoxLicense.Name = "textBoxLicense";
textBoxLicense.Size = new Size(271, 23);
textBoxLicense.TabIndex = 2;
//
// textBoxCapacity
//
textBoxCapacity.Location = new Point(101, 99);
textBoxCapacity.Name = "textBoxCapacity";
textBoxCapacity.Size = new Size(271, 23);
textBoxCapacity.TabIndex = 3;
//
// buttonCancel
//
buttonCancel.Location = new Point(297, 135);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(216, 135);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 5;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// labelType
//
labelType.AutoSize = true;
labelType.Location = new Point(12, 15);
labelType.Name = "labelType";
labelType.Size = new Size(30, 15);
labelType.TabIndex = 6;
labelType.Text = "Тип:";
//
// labelDriver
//
labelDriver.AutoSize = true;
labelDriver.Location = new Point(12, 44);
labelDriver.Name = "labelDriver";
labelDriver.Size = new Size(61, 15);
labelDriver.TabIndex = 7;
labelDriver.Text = "Водитель:";
//
// labelLicense
//
labelLicense.AutoSize = true;
labelLicense.Location = new Point(12, 73);
labelLicense.Name = "labelLicense";
labelLicense.Size = new Size(48, 15);
labelLicense.TabIndex = 8;
labelLicense.Text = "Номер:";
//
// labelCapacity
//
labelCapacity.AutoSize = true;
labelCapacity.Location = new Point(12, 102);
labelCapacity.Name = "labelCapacity";
labelCapacity.Size = new Size(83, 15);
labelCapacity.TabIndex = 9;
labelCapacity.Text = "Вместимость:";
//
// FormTransport
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(384, 171);
Controls.Add(labelCapacity);
Controls.Add(labelLicense);
Controls.Add(labelDriver);
Controls.Add(labelType);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCapacity);
Controls.Add(textBoxLicense);
Controls.Add(comboBoxDriver);
Controls.Add(comboBoxType);
Name = "FormTransport";
Text = "FormTransport";
Load += FormTransport_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBoxType;
private ComboBox comboBoxDriver;
private TextBox textBoxLicense;
private TextBox textBoxCapacity;
private Button buttonCancel;
private Button buttonSave;
private Label labelType;
private Label labelDriver;
private Label labelLicense;
private Label labelCapacity;
}
}