SUBD_TransportCompany/TransportCompany/TransportCompanyView/FormTransport.Designer.cs

140 lines
5.0 KiB
C#
Raw Normal View History

namespace TransportCompanyView
{
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()
{
labelName = new Label();
textBoxName = new TextBox();
textBoxStateNumber = new TextBox();
labelAddress = new Label();
buttonSave = new Button();
buttonCancel = new Button();
textBoxLoadCapacity = new TextBox();
labelLoadCapacity = new Label();
SuspendLayout();
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(11, 9);
labelName.Name = "labelName";
labelName.Size = new Size(80, 20);
labelName.TabIndex = 0;
labelName.Text = "Название:";
//
// textBoxName
//
textBoxName.Location = new Point(117, 9);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(347, 27);
textBoxName.TabIndex = 1;
//
// textBoxStateNumber
//
textBoxStateNumber.Location = new Point(117, 75);
textBoxStateNumber.Name = "textBoxStateNumber";
textBoxStateNumber.Size = new Size(347, 27);
textBoxStateNumber.TabIndex = 3;
//
// labelAddress
//
labelAddress.AutoSize = true;
labelAddress.Location = new Point(11, 75);
labelAddress.Name = "labelAddress";
labelAddress.Size = new Size(85, 20);
labelAddress.TabIndex = 2;
labelAddress.Text = "Гос. номер";
//
// buttonSave
//
buttonSave.Location = new Point(172, 118);
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, 118);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(136, 40);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// textBoxLoadCapacity
//
textBoxLoadCapacity.Location = new Point(117, 42);
textBoxLoadCapacity.Name = "textBoxLoadCapacity";
textBoxLoadCapacity.Size = new Size(101, 27);
textBoxLoadCapacity.TabIndex = 7;
//
// labelLoadCapacity
//
labelLoadCapacity.AutoSize = true;
labelLoadCapacity.Location = new Point(11, 42);
labelLoadCapacity.Name = "labelLoadCapacity";
labelLoadCapacity.Size = new Size(100, 20);
labelLoadCapacity.TabIndex = 6;
labelLoadCapacity.Text = "Вместимость";
//
// FormTransport
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(478, 170);
Controls.Add(textBoxLoadCapacity);
Controls.Add(labelLoadCapacity);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxStateNumber);
Controls.Add(labelAddress);
Controls.Add(textBoxName);
Controls.Add(labelName);
Name = "FormTransport";
Text = "Машина";
Load += FormTransport_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelName;
private TextBox textBoxName;
private TextBox textBoxStateNumber;
private Label labelAddress;
private Button buttonSave;
private Button buttonCancel;
private TextBox textBoxLoadCapacity;
private Label labelLoadCapacity;
}
}