143 lines
4.8 KiB
C#
143 lines
4.8 KiB
C#
namespace CarRepairShopView
|
|
{
|
|
partial class FormRepairShop
|
|
{
|
|
/// <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()
|
|
{
|
|
comboBoxShop = new ComboBox();
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
comboBoxRepair = new ComboBox();
|
|
label3 = new Label();
|
|
textBoxCount = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// comboBoxShop
|
|
//
|
|
comboBoxShop.FormattingEnabled = true;
|
|
comboBoxShop.Location = new Point(89, 9);
|
|
comboBoxShop.Name = "comboBoxShop";
|
|
comboBoxShop.Size = new Size(178, 23);
|
|
comboBoxShop.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(12, 12);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(57, 15);
|
|
label1.TabIndex = 1;
|
|
label1.Text = "Магазин:";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(12, 50);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(51, 15);
|
|
label2.TabIndex = 2;
|
|
label2.Text = "Ремонт:";
|
|
//
|
|
// comboBoxRepair
|
|
//
|
|
comboBoxRepair.FormattingEnabled = true;
|
|
comboBoxRepair.Location = new Point(89, 47);
|
|
comboBoxRepair.Name = "comboBoxRepair";
|
|
comboBoxRepair.Size = new Size(178, 23);
|
|
comboBoxRepair.TabIndex = 3;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(12, 89);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(49, 15);
|
|
label3.TabIndex = 5;
|
|
label3.Text = "Кол-во:";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(89, 86);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(178, 23);
|
|
textBoxCount.TabIndex = 6;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(195, 122);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(90, 32);
|
|
buttonSave.TabIndex = 7;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(60, 122);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(90, 32);
|
|
buttonCancel.TabIndex = 8;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// FormRepairShop
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(297, 166);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(label3);
|
|
Controls.Add(comboBoxRepair);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(comboBoxShop);
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
Name = "FormRepairShop";
|
|
Text = "Назначит ремонт магазину";
|
|
Load += FormRepairShop_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxShop;
|
|
private Label label1;
|
|
private Label label2;
|
|
private ComboBox comboBoxRepair;
|
|
private Label label3;
|
|
private TextBox textBoxCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |