SUBD_TransportCompany/TransportCompany/TransportCompanyView/FormCreateTransportation.Designer.cs

211 lines
7.8 KiB
C#
Raw Permalink Normal View History

namespace TransportCompanyView
{
partial class FormCreateTransportation
{
/// <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()
{
labelCargo = new Label();
comboBoxCargo = new ComboBox();
labelCount = new Label();
textBoxCount = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
comboBoxDriver = new ComboBox();
labelDriver = new Label();
comboBoxTransport = new ComboBox();
labelTransport = new Label();
comboBoxPointFrom = new ComboBox();
labelPointFrom = new Label();
comboBoxPointTo = new ComboBox();
labelPointTo = new Label();
SuspendLayout();
//
// labelCargo
//
labelCargo.AutoSize = true;
labelCargo.Location = new Point(11, 15);
labelCargo.Name = "labelCargo";
labelCargo.Size = new Size(39, 20);
labelCargo.TabIndex = 0;
labelCargo.Text = "Груз";
//
// comboBoxCargo
//
comboBoxCargo.FormattingEnabled = true;
comboBoxCargo.Location = new Point(115, 12);
comboBoxCargo.Name = "comboBoxCargo";
comboBoxCargo.Size = new Size(358, 28);
comboBoxCargo.TabIndex = 1;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(11, 49);
labelCount.Name = "labelCount";
labelCount.Size = new Size(97, 20);
labelCount.TabIndex = 2;
labelCount.Text = "Количество: ";
//
// textBoxCount
//
textBoxCount.Location = new Point(115, 45);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(358, 27);
textBoxCount.TabIndex = 3;
//
// buttonCancel
//
buttonCancel.Location = new Point(355, 227);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(110, 32);
buttonCancel.TabIndex = 6;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(239, 227);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(110, 32);
buttonSave.TabIndex = 7;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// comboBoxDriver
//
comboBoxDriver.FormattingEnabled = true;
comboBoxDriver.Location = new Point(115, 78);
comboBoxDriver.Name = "comboBoxDriver";
comboBoxDriver.Size = new Size(358, 28);
comboBoxDriver.TabIndex = 9;
//
// labelDriver
//
labelDriver.AutoSize = true;
labelDriver.Location = new Point(11, 81);
labelDriver.Name = "labelDriver";
labelDriver.Size = new Size(74, 20);
labelDriver.TabIndex = 8;
labelDriver.Text = "Водитель";
//
// comboBoxTransport
//
comboBoxTransport.FormattingEnabled = true;
comboBoxTransport.Location = new Point(115, 112);
comboBoxTransport.Name = "comboBoxTransport";
comboBoxTransport.Size = new Size(358, 28);
comboBoxTransport.TabIndex = 11;
//
// labelTransport
//
labelTransport.AutoSize = true;
labelTransport.Location = new Point(11, 115);
labelTransport.Name = "labelTransport";
labelTransport.Size = new Size(68, 20);
labelTransport.TabIndex = 10;
labelTransport.Text = "Машина";
//
// comboBoxPointFrom
//
comboBoxPointFrom.FormattingEnabled = true;
comboBoxPointFrom.Location = new Point(115, 146);
comboBoxPointFrom.Name = "comboBoxPointFrom";
comboBoxPointFrom.Size = new Size(358, 28);
comboBoxPointFrom.TabIndex = 13;
//
// labelPointFrom
//
labelPointFrom.AutoSize = true;
labelPointFrom.Location = new Point(11, 149);
labelPointFrom.Name = "labelPointFrom";
labelPointFrom.Size = new Size(56, 20);
labelPointFrom.TabIndex = 12;
labelPointFrom.Text = "Откуда";
//
// comboBoxPointTo
//
comboBoxPointTo.FormattingEnabled = true;
comboBoxPointTo.Location = new Point(115, 180);
comboBoxPointTo.Name = "comboBoxPointTo";
comboBoxPointTo.Size = new Size(358, 28);
comboBoxPointTo.TabIndex = 15;
//
// labelPointTo
//
labelPointTo.AutoSize = true;
labelPointTo.Location = new Point(11, 183);
labelPointTo.Name = "labelPointTo";
labelPointTo.Size = new Size(41, 20);
labelPointTo.TabIndex = 14;
labelPointTo.Text = "Куда";
//
// FormCreateTransportation
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(485, 271);
Controls.Add(comboBoxPointTo);
Controls.Add(labelPointTo);
Controls.Add(comboBoxPointFrom);
Controls.Add(labelPointFrom);
Controls.Add(comboBoxTransport);
Controls.Add(labelTransport);
Controls.Add(comboBoxDriver);
Controls.Add(labelDriver);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxCargo);
Controls.Add(labelCargo);
Name = "FormCreateTransportation";
Text = "Транспортировка";
Load += new System.EventHandler(FormCreateTransportation_Load);
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelCargo;
private ComboBox comboBoxCargo;
private Label labelCount;
private TextBox textBoxCount;
private Button buttonCancel;
private Button buttonSave;
private ComboBox comboBoxDriver;
private Label labelDriver;
private ComboBox comboBoxTransport;
private Label labelTransport;
private ComboBox comboBoxPointFrom;
private Label labelPointFrom;
private ComboBox comboBoxPointTo;
private Label labelPointTo;
}
}