143 lines
4.9 KiB
C#
143 lines
4.9 KiB
C#
namespace FuelAccounting.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();
|
|
textBoxModel = new TextBox();
|
|
comboBoxCategory = new ComboBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
comboBoxDriverId = new ComboBox();
|
|
SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(12, 18);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(50, 15);
|
|
label1.TabIndex = 0;
|
|
label1.Text = "Модель";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(12, 101);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(170, 15);
|
|
label2.TabIndex = 1;
|
|
label2.Text = "ID закрепленного сотрудника";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(12, 58);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(63, 15);
|
|
label3.TabIndex = 2;
|
|
label3.Text = "Категория";
|
|
//
|
|
// textBoxModel
|
|
//
|
|
textBoxModel.Location = new Point(118, 15);
|
|
textBoxModel.Name = "textBoxModel";
|
|
textBoxModel.Size = new Size(154, 23);
|
|
textBoxModel.TabIndex = 3;
|
|
//
|
|
// comboBoxCategory
|
|
//
|
|
comboBoxCategory.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxCategory.FormattingEnabled = true;
|
|
comboBoxCategory.Location = new Point(118, 55);
|
|
comboBoxCategory.Name = "comboBoxCategory";
|
|
comboBoxCategory.Size = new Size(154, 23);
|
|
comboBoxCategory.TabIndex = 4;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(164, 140);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(108, 38);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(12, 140);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(108, 38);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// comboBoxDriverId
|
|
//
|
|
comboBoxDriverId.FormattingEnabled = true;
|
|
comboBoxDriverId.Location = new Point(188, 98);
|
|
comboBoxDriverId.Name = "comboBoxDriverId";
|
|
comboBoxDriverId.Size = new Size(84, 23);
|
|
comboBoxDriverId.TabIndex = 8;
|
|
//
|
|
// FormCar
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(297, 203);
|
|
Controls.Add(comboBoxDriverId);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(comboBoxCategory);
|
|
Controls.Add(textBoxModel);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Name = "FormCar";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Автомобиль";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private TextBox textBoxModel;
|
|
private ComboBox comboBoxCategory;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
private ComboBox comboBoxDriverId;
|
|
}
|
|
} |