PIbd-23_Baryshev_D.A._Garage/ProjectGarage/Forms/FormTransportation.Designer.cs

171 lines
6.7 KiB
C#

namespace ProjectGarage.Forms
{
partial class FormTransportation
{
/// <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()
{
labelFuel = new Label();
labelDriver = new Label();
labelRoute = new Label();
label1 = new Label();
numericUpDownAmountFuel = new NumericUpDown();
comboBoxFuel = new ComboBox();
comboBoxRoute = new ComboBox();
comboBoxDriver = new ComboBox();
buttonTransportationSave = new Button();
buttonTransportationCancel = new Button();
((System.ComponentModel.ISupportInitialize)numericUpDownAmountFuel).BeginInit();
SuspendLayout();
//
// labelFuel
//
labelFuel.AutoSize = true;
labelFuel.Location = new Point(32, 26);
labelFuel.Name = "labelFuel";
labelFuel.Size = new Size(69, 20);
labelFuel.TabIndex = 0;
labelFuel.Text = "Топливо";
//
// labelDriver
//
labelDriver.AutoSize = true;
labelDriver.Location = new Point(32, 70);
labelDriver.Name = "labelDriver";
labelDriver.Size = new Size(74, 20);
labelDriver.TabIndex = 1;
labelDriver.Text = "Водитель";
//
// labelRoute
//
labelRoute.AutoSize = true;
labelRoute.Location = new Point(32, 116);
labelRoute.Name = "labelRoute";
labelRoute.Size = new Size(73, 20);
labelRoute.TabIndex = 2;
labelRoute.Text = "Маршрут";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 157);
label1.Name = "label1";
label1.Size = new Size(118, 20);
label1.TabIndex = 3;
label1.Text = "Объем топлива";
//
// numericUpDownAmountFuel
//
numericUpDownAmountFuel.Location = new Point(152, 155);
numericUpDownAmountFuel.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
numericUpDownAmountFuel.Name = "numericUpDownAmountFuel";
numericUpDownAmountFuel.Size = new Size(150, 27);
numericUpDownAmountFuel.TabIndex = 4;
numericUpDownAmountFuel.Value = new decimal(new int[] { 1, 0, 0, 0 });
//
// comboBoxFuel
//
comboBoxFuel.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxFuel.FormattingEnabled = true;
comboBoxFuel.Location = new Point(151, 23);
comboBoxFuel.Name = "comboBoxFuel";
comboBoxFuel.Size = new Size(151, 28);
comboBoxFuel.TabIndex = 5;
//
// comboBoxRoute
//
comboBoxRoute.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxRoute.FormattingEnabled = true;
comboBoxRoute.Location = new Point(151, 113);
comboBoxRoute.Name = "comboBoxRoute";
comboBoxRoute.Size = new Size(151, 28);
comboBoxRoute.TabIndex = 6;
//
// comboBoxDriver
//
comboBoxDriver.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxDriver.FormattingEnabled = true;
comboBoxDriver.Location = new Point(152, 67);
comboBoxDriver.Name = "comboBoxDriver";
comboBoxDriver.Size = new Size(151, 28);
comboBoxDriver.TabIndex = 7;
//
// buttonTransportationSave
//
buttonTransportationSave.Location = new Point(12, 194);
buttonTransportationSave.Name = "buttonTransportationSave";
buttonTransportationSave.Size = new Size(135, 29);
buttonTransportationSave.TabIndex = 8;
buttonTransportationSave.Text = "Сохранить";
buttonTransportationSave.UseVisualStyleBackColor = true;
buttonTransportationSave.Click += ButtonTransportationSave_Click;
//
// buttonTransportationCancel
//
buttonTransportationCancel.Location = new Point(163, 194);
buttonTransportationCancel.Name = "buttonTransportationCancel";
buttonTransportationCancel.Size = new Size(140, 29);
buttonTransportationCancel.TabIndex = 9;
buttonTransportationCancel.Text = "Отмена";
buttonTransportationCancel.UseVisualStyleBackColor = true;
buttonTransportationCancel.Click += ButtonTransportationCancel_Click;
//
// FormTransportation
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(324, 244);
Controls.Add(buttonTransportationCancel);
Controls.Add(buttonTransportationSave);
Controls.Add(comboBoxDriver);
Controls.Add(comboBoxRoute);
Controls.Add(comboBoxFuel);
Controls.Add(numericUpDownAmountFuel);
Controls.Add(label1);
Controls.Add(labelRoute);
Controls.Add(labelDriver);
Controls.Add(labelFuel);
Name = "FormTransportation";
Text = "FormTransportation";
((System.ComponentModel.ISupportInitialize)numericUpDownAmountFuel).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelFuel;
private Label labelDriver;
private Label labelRoute;
private Label label1;
private NumericUpDown numericUpDownAmountFuel;
private ComboBox comboBoxFuel;
private ComboBox comboBoxRoute;
private ComboBox comboBoxDriver;
private Button buttonTransportationSave;
private Button buttonTransportationCancel;
}
}