just found another thing to quick fix
This commit is contained in:
parent
f74e9c199e
commit
cf9b5fdbc6
@ -28,24 +28,24 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
this.label1 = new System.Windows.Forms.Label();
|
this.labelComputer = new System.Windows.Forms.Label();
|
||||||
this.comboBoxComputer = new System.Windows.Forms.ComboBox();
|
this.comboBoxComputer = new System.Windows.Forms.ComboBox();
|
||||||
this.label2 = new System.Windows.Forms.Label();
|
this.labelCount = new System.Windows.Forms.Label();
|
||||||
this.textBoxCount = new System.Windows.Forms.TextBox();
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
||||||
this.textBoxSum = new System.Windows.Forms.TextBox();
|
this.textBoxSum = new System.Windows.Forms.TextBox();
|
||||||
this.label3 = new System.Windows.Forms.Label();
|
this.labelSum = new System.Windows.Forms.Label();
|
||||||
this.button1 = new System.Windows.Forms.Button();
|
this.button1 = new System.Windows.Forms.Button();
|
||||||
this.button2 = new System.Windows.Forms.Button();
|
this.button2 = new System.Windows.Forms.Button();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// label1
|
// labelComputer
|
||||||
//
|
//
|
||||||
this.label1.AutoSize = true;
|
this.labelComputer.AutoSize = true;
|
||||||
this.label1.Location = new System.Drawing.Point(12, 15);
|
this.labelComputer.Location = new System.Drawing.Point(12, 15);
|
||||||
this.label1.Name = "label1";
|
this.labelComputer.Name = "labelComputer";
|
||||||
this.label1.Size = new System.Drawing.Size(74, 15);
|
this.labelComputer.Size = new System.Drawing.Size(74, 15);
|
||||||
this.label1.TabIndex = 0;
|
this.labelComputer.TabIndex = 0;
|
||||||
this.label1.Text = "Компьютер:";
|
this.labelComputer.Text = "Компьютер:";
|
||||||
//
|
//
|
||||||
// comboBoxComputer
|
// comboBoxComputer
|
||||||
//
|
//
|
||||||
@ -56,14 +56,14 @@
|
|||||||
this.comboBoxComputer.TabIndex = 1;
|
this.comboBoxComputer.TabIndex = 1;
|
||||||
this.comboBoxComputer.SelectedIndexChanged += new System.EventHandler(this.comboBoxComputer_SelectedIndexChanged);
|
this.comboBoxComputer.SelectedIndexChanged += new System.EventHandler(this.comboBoxComputer_SelectedIndexChanged);
|
||||||
//
|
//
|
||||||
// label2
|
// labelCount
|
||||||
//
|
//
|
||||||
this.label2.AutoSize = true;
|
this.labelCount.AutoSize = true;
|
||||||
this.label2.Location = new System.Drawing.Point(12, 44);
|
this.labelCount.Location = new System.Drawing.Point(12, 44);
|
||||||
this.label2.Name = "label2";
|
this.labelCount.Name = "labelCount";
|
||||||
this.label2.Size = new System.Drawing.Size(75, 15);
|
this.labelCount.Size = new System.Drawing.Size(75, 15);
|
||||||
this.label2.TabIndex = 2;
|
this.labelCount.TabIndex = 2;
|
||||||
this.label2.Text = "Количество:";
|
this.labelCount.Text = "Количество:";
|
||||||
//
|
//
|
||||||
// textBoxCount
|
// textBoxCount
|
||||||
//
|
//
|
||||||
@ -81,14 +81,14 @@
|
|||||||
this.textBoxSum.Size = new System.Drawing.Size(251, 23);
|
this.textBoxSum.Size = new System.Drawing.Size(251, 23);
|
||||||
this.textBoxSum.TabIndex = 5;
|
this.textBoxSum.TabIndex = 5;
|
||||||
//
|
//
|
||||||
// label3
|
// labelSum
|
||||||
//
|
//
|
||||||
this.label3.AutoSize = true;
|
this.labelSum.AutoSize = true;
|
||||||
this.label3.Location = new System.Drawing.Point(12, 73);
|
this.labelSum.Location = new System.Drawing.Point(12, 73);
|
||||||
this.label3.Name = "label3";
|
this.labelSum.Name = "labelSum";
|
||||||
this.label3.Size = new System.Drawing.Size(48, 15);
|
this.labelSum.Size = new System.Drawing.Size(48, 15);
|
||||||
this.label3.TabIndex = 4;
|
this.labelSum.TabIndex = 4;
|
||||||
this.label3.Text = "Сумма:";
|
this.labelSum.Text = "Сумма:";
|
||||||
//
|
//
|
||||||
// button1
|
// button1
|
||||||
//
|
//
|
||||||
@ -118,11 +118,11 @@
|
|||||||
this.Controls.Add(this.button2);
|
this.Controls.Add(this.button2);
|
||||||
this.Controls.Add(this.button1);
|
this.Controls.Add(this.button1);
|
||||||
this.Controls.Add(this.textBoxSum);
|
this.Controls.Add(this.textBoxSum);
|
||||||
this.Controls.Add(this.label3);
|
this.Controls.Add(this.labelSum);
|
||||||
this.Controls.Add(this.textBoxCount);
|
this.Controls.Add(this.textBoxCount);
|
||||||
this.Controls.Add(this.label2);
|
this.Controls.Add(this.labelCount);
|
||||||
this.Controls.Add(this.comboBoxComputer);
|
this.Controls.Add(this.comboBoxComputer);
|
||||||
this.Controls.Add(this.label1);
|
this.Controls.Add(this.labelComputer);
|
||||||
this.Name = "FormCreateOrder";
|
this.Name = "FormCreateOrder";
|
||||||
this.Text = "Заказ";
|
this.Text = "Заказ";
|
||||||
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
|
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
|
||||||
@ -133,12 +133,12 @@
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private Label label1;
|
private Label labelComputer;
|
||||||
private ComboBox comboBoxComputer;
|
private ComboBox comboBoxComputer;
|
||||||
private Label label2;
|
private Label labelCount;
|
||||||
private TextBox textBoxCount;
|
private TextBox textBoxCount;
|
||||||
private TextBox textBoxSum;
|
private TextBox textBoxSum;
|
||||||
private Label label3;
|
private Label labelSum;
|
||||||
private Button button1;
|
private Button button1;
|
||||||
private Button button2;
|
private Button button2;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user