PIbd23_Ivanova_S.V._Precast.../PrecastConcretePlant/PrecastConcretePlantView/FormCreateOrder.Designer.cs
2024-03-05 07:44:51 +04:00

143 lines
5.0 KiB
C#

namespace PrecastConcretePlantView
{
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()
{
labelReinforced = new Label();
labelCount = new Label();
labelSum = new Label();
buttonSave = new Button();
buttonCancel = new Button();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
comboBoxReinforced = new ComboBox();
SuspendLayout();
//
// labelReinforced
//
labelReinforced.AutoSize = true;
labelReinforced.Location = new Point(12, 12);
labelReinforced.Name = "labelReinforced";
labelReinforced.Size = new Size(53, 15);
labelReinforced.TabIndex = 0;
labelReinforced.Text = "Изделие";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 44);
labelCount.Name = "labelCount";
labelCount.Size = new Size(72, 15);
labelCount.TabIndex = 1;
labelCount.Text = "Количество";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(12, 73);
labelSum.Name = "labelSum";
labelSum.Size = new Size(45, 15);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма";
//
// buttonSave
//
buttonSave.Location = new Point(187, 99);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(87, 35);
buttonSave.TabIndex = 3;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(280, 99);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(87, 35);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// textBoxCount
//
textBoxCount.Location = new Point(101, 41);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(266, 23);
textBoxCount.TabIndex = 5;
textBoxCount.TextChanged += textBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(101, 70);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(266, 23);
textBoxSum.TabIndex = 6;
//
// comboBoxReinforced
//
comboBoxReinforced.FormattingEnabled = true;
comboBoxReinforced.Location = new Point(101, 12);
comboBoxReinforced.Name = "comboBoxReinforced";
comboBoxReinforced.Size = new Size(266, 23);
comboBoxReinforced.TabIndex = 7;
comboBoxReinforced.SelectedIndexChanged += comboBoxReinforced_SelectedIndexChanged;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(379, 145);
Controls.Add(comboBoxReinforced);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelReinforced);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelReinforced;
private Label labelCount;
private Label labelSum;
private Button buttonSave;
private Button buttonCancel;
private TextBox textBoxCount;
private TextBox textBoxSum;
private ComboBox comboBoxReinforced;
}
}