2024-12-23 11:33:05 +04:00

188 lines
6.9 KiB
C#

namespace ProjectFuel.Forms_
{
partial class FormCar
{
/// <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()
{
label1 = new Label();
label2 = new Label();
label3 = new Label();
label4 = new Label();
label5 = new Label();
textBoxCarMark = new TextBox();
textBoxCarModel = new TextBox();
comboBoxCarType = new ComboBox();
checkedListBoxDriverLicense = new CheckedListBox();
numericUpDownConsumptionRate = new NumericUpDown();
buttonCarSave = new Button();
buttonCancel = new Button();
((System.ComponentModel.ISupportInitialize)numericUpDownConsumptionRate).BeginInit();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(48, 70);
label1.Name = "label1";
label1.Size = new Size(86, 32);
label1.TabIndex = 0;
label1.Text = "Марка";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(50, 138);
label2.Name = "label2";
label2.Size = new Size(101, 32);
label2.TabIndex = 1;
label2.Text = "Модель";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(48, 323);
label3.Name = "label3";
label3.Size = new Size(186, 32);
label3.TabIndex = 2;
label3.Text = "Категория прав";
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(48, 247);
label4.Name = "label4";
label4.Size = new Size(155, 32);
label4.TabIndex = 3;
label4.Text = "Тип машины";
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(48, 428);
label5.Name = "label5";
label5.Size = new Size(185, 32);
label5.TabIndex = 4;
label5.Text = "Расход топлива";
//
// textBoxCarMark
//
textBoxCarMark.Location = new Point(282, 73);
textBoxCarMark.Name = "textBoxCarMark";
textBoxCarMark.Size = new Size(200, 39);
textBoxCarMark.TabIndex = 5;
//
// textBoxCarModel
//
textBoxCarModel.Location = new Point(269, 147);
textBoxCarModel.Name = "textBoxCarModel";
textBoxCarModel.Size = new Size(200, 39);
textBoxCarModel.TabIndex = 6;
//
// comboBoxCarType
//
comboBoxCarType.FormattingEnabled = true;
comboBoxCarType.Location = new Point(301, 248);
comboBoxCarType.Name = "comboBoxCarType";
comboBoxCarType.Size = new Size(242, 40);
comboBoxCarType.TabIndex = 7;
//
// checkedListBoxDriverLicense
//
checkedListBoxDriverLicense.FormattingEnabled = true;
checkedListBoxDriverLicense.Location = new Point(305, 321);
checkedListBoxDriverLicense.Name = "checkedListBoxDriverLicense";
checkedListBoxDriverLicense.Size = new Size(240, 76);
checkedListBoxDriverLicense.TabIndex = 8;
//
// numericUpDownConsumptionRate
//
numericUpDownConsumptionRate.Location = new Point(295, 443);
numericUpDownConsumptionRate.Name = "numericUpDownConsumptionRate";
numericUpDownConsumptionRate.Size = new Size(240, 39);
numericUpDownConsumptionRate.TabIndex = 9;
//
// buttonCarSave
//
buttonCarSave.Location = new Point(75, 543);
buttonCarSave.Name = "buttonCarSave";
buttonCarSave.Size = new Size(150, 46);
buttonCarSave.TabIndex = 10;
buttonCarSave.Text = "Сохранить";
buttonCarSave.UseVisualStyleBackColor = true;
buttonCarSave.Click += ButtonCarSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(341, 543);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(150, 46);
buttonCancel.TabIndex = 11;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormCar
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(905, 627);
Controls.Add(buttonCancel);
Controls.Add(buttonCarSave);
Controls.Add(numericUpDownConsumptionRate);
Controls.Add(checkedListBoxDriverLicense);
Controls.Add(comboBoxCarType);
Controls.Add(textBoxCarModel);
Controls.Add(textBoxCarMark);
Controls.Add(label5);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormCar";
StartPosition = FormStartPosition.CenterParent;
Text = "FormCar";
((System.ComponentModel.ISupportInitialize)numericUpDownConsumptionRate).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private Label label3;
private Label label4;
private Label label5;
private TextBox textBoxCarMark;
private TextBox textBoxCarModel;
private ComboBox comboBoxCarType;
private CheckedListBox checkedListBoxDriverLicense;
private NumericUpDown numericUpDownConsumptionRate;
private Button buttonCarSave;
private Button buttonCancel;
}
}