145 lines
4.9 KiB
C#
145 lines
4.9 KiB
C#
|
namespace CarRepairShopView
|
|||
|
{
|
|||
|
partial class FormCreateOrder
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
comboBoxRepair = new ComboBox();
|
|||
|
textBoxCount = new TextBox();
|
|||
|
textBoxSum = new TextBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(10, 11);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(51, 15);
|
|||
|
label1.TabIndex = 0;
|
|||
|
label1.Text = "Ремонт:";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
label2.AutoSize = true;
|
|||
|
label2.Location = new Point(10, 42);
|
|||
|
label2.Name = "label2";
|
|||
|
label2.Size = new Size(75, 15);
|
|||
|
label2.TabIndex = 1;
|
|||
|
label2.Text = "Количество:";
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
label3.AutoSize = true;
|
|||
|
label3.Location = new Point(10, 69);
|
|||
|
label3.Name = "label3";
|
|||
|
label3.Size = new Size(48, 15);
|
|||
|
label3.TabIndex = 2;
|
|||
|
label3.Text = "Сумма:";
|
|||
|
//
|
|||
|
// comboBoxRepair
|
|||
|
//
|
|||
|
comboBoxRepair.DropDownStyle = ComboBoxStyle.DropDownList;
|
|||
|
comboBoxRepair.FormattingEnabled = true;
|
|||
|
comboBoxRepair.Location = new Point(98, 8);
|
|||
|
comboBoxRepair.Name = "comboBoxRepair";
|
|||
|
comboBoxRepair.Size = new Size(249, 23);
|
|||
|
comboBoxRepair.TabIndex = 3;
|
|||
|
comboBoxRepair.SelectedIndexChanged += comboBoxRepair_SelectedIndexChanged;
|
|||
|
//
|
|||
|
// textBoxCount
|
|||
|
//
|
|||
|
textBoxCount.Location = new Point(98, 37);
|
|||
|
textBoxCount.Name = "textBoxCount";
|
|||
|
textBoxCount.Size = new Size(249, 23);
|
|||
|
textBoxCount.TabIndex = 4;
|
|||
|
textBoxCount.TextChanged += textBoxCount_TextChanged;
|
|||
|
//
|
|||
|
// textBoxSum
|
|||
|
//
|
|||
|
textBoxSum.Location = new Point(98, 66);
|
|||
|
textBoxSum.Name = "textBoxSum";
|
|||
|
textBoxSum.ReadOnly = true;
|
|||
|
textBoxSum.Size = new Size(249, 23);
|
|||
|
textBoxSum.TabIndex = 5;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(150, 95);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(90, 26);
|
|||
|
buttonSave.TabIndex = 6;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(246, 95);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(90, 26);
|
|||
|
buttonCancel.TabIndex = 7;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// FormCreateOrder
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(361, 130);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxSum);
|
|||
|
Controls.Add(textBoxCount);
|
|||
|
Controls.Add(comboBoxRepair);
|
|||
|
Controls.Add(label3);
|
|||
|
Controls.Add(label2);
|
|||
|
Controls.Add(label1);
|
|||
|
Name = "FormCreateOrder";
|
|||
|
Text = "Заказ";
|
|||
|
Load += FormCreateOrder_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label label1;
|
|||
|
private Label label2;
|
|||
|
private Label label3;
|
|||
|
private ComboBox comboBoxRepair;
|
|||
|
private TextBox textBoxCount;
|
|||
|
private TextBox textBoxSum;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|