preparing for pr

This commit is contained in:
Zakharov_Rostislav 2024-05-07 17:58:51 +04:00
parent 5aa2ac7e17
commit 906019a63d

View File

@ -43,36 +43,35 @@
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(25, 23);
labelName.Location = new Point(22, 17);
labelName.Name = "labelName";
labelName.Size = new Size(71, 20);
labelName.Size = new Size(56, 15);
labelName.TabIndex = 0;
labelName.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(25, 61);
labelCount.Location = new Point(22, 46);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.Size = new Size(75, 15);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(25, 139);
labelSum.Location = new Point(22, 104);
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.Size = new Size(48, 15);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// TextBoxCount
//
TextBoxCount.Location = new Point(143, 57);
TextBoxCount.Margin = new Padding(3, 4, 3, 4);
TextBoxCount.Location = new Point(125, 43);
TextBoxCount.Name = "TextBoxCount";
TextBoxCount.Size = new Size(244, 27);
TextBoxCount.Size = new Size(214, 23);
TextBoxCount.TabIndex = 3;
TextBoxCount.TextChanged += TextBoxCount_TextChanged;
//
@ -80,29 +79,26 @@
//
ComboBoxManufacture.DropDownStyle = ComboBoxStyle.DropDownList;
ComboBoxManufacture.FormattingEnabled = true;
ComboBoxManufacture.Location = new Point(143, 19);
ComboBoxManufacture.Margin = new Padding(3, 4, 3, 4);
ComboBoxManufacture.Location = new Point(125, 14);
ComboBoxManufacture.Name = "ComboBoxManufacture";
ComboBoxManufacture.Size = new Size(244, 28);
ComboBoxManufacture.Size = new Size(214, 23);
ComboBoxManufacture.TabIndex = 4;
ComboBoxManufacture.SelectedIndexChanged += ComboBoxManufacture_SelectedIndexChanged;
//
// TextBoxSum
//
TextBoxSum.Location = new Point(143, 135);
TextBoxSum.Margin = new Padding(3, 4, 3, 4);
TextBoxSum.Location = new Point(125, 101);
TextBoxSum.Name = "TextBoxSum";
TextBoxSum.ReadOnly = true;
TextBoxSum.Size = new Size(244, 27);
TextBoxSum.Size = new Size(214, 23);
TextBoxSum.TabIndex = 5;
TextBoxSum.TextChanged += TextBoxSum_TextChanged;
//
// buttonCancel
//
buttonCancel.Location = new Point(299, 173);
buttonCancel.Margin = new Padding(3, 4, 3, 4);
buttonCancel.Location = new Point(262, 130);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(88, 32);
buttonCancel.Size = new Size(77, 24);
buttonCancel.TabIndex = 6;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
@ -110,10 +106,9 @@
//
// buttonSave
//
buttonSave.Location = new Point(200, 173);
buttonSave.Margin = new Padding(3, 4, 3, 4);
buttonSave.Location = new Point(175, 130);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(93, 32);
buttonSave.Size = new Size(81, 24);
buttonSave.TabIndex = 7;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
@ -122,9 +117,9 @@
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(25, 100);
labelClient.Location = new Point(22, 75);
labelClient.Name = "labelClient";
labelClient.Size = new Size(61, 20);
labelClient.Size = new Size(49, 15);
labelClient.TabIndex = 8;
labelClient.Text = "Клиент:";
//
@ -132,17 +127,16 @@
//
ComboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList;
ComboBoxClient.FormattingEnabled = true;
ComboBoxClient.Location = new Point(143, 96);
ComboBoxClient.Margin = new Padding(3, 4, 3, 4);
ComboBoxClient.Location = new Point(125, 72);
ComboBoxClient.Name = "ComboBoxClient";
ComboBoxClient.Size = new Size(244, 28);
ComboBoxClient.Size = new Size(214, 23);
ComboBoxClient.TabIndex = 9;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(399, 221);
ClientSize = new Size(349, 166);
Controls.Add(ComboBoxClient);
Controls.Add(labelClient);
Controls.Add(buttonSave);
@ -153,7 +147,6 @@
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelName);
Margin = new Padding(3, 4, 3, 4);
Name = "FormCreateOrder";
StartPosition = FormStartPosition.CenterParent;
Text = "Заказ";