128 lines
4.7 KiB
C#
128 lines
4.7 KiB
C#
namespace PrecastConcretePlantView
|
|
{
|
|
partial class FormReinforcedSale
|
|
{
|
|
/// <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()
|
|
{
|
|
buttonCancel = new Button();
|
|
buttonSale = new Button();
|
|
textBoxCount = new TextBox();
|
|
labelCount = new Label();
|
|
comboBoxReinforced = new ComboBox();
|
|
labelReinforced = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(289, 111);
|
|
buttonCancel.Margin = new Padding(5, 4, 5, 4);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(101, 36);
|
|
buttonCancel.TabIndex = 17;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSale
|
|
//
|
|
buttonSale.Location = new Point(182, 111);
|
|
buttonSale.Margin = new Padding(5, 4, 5, 4);
|
|
buttonSale.Name = "buttonSale";
|
|
buttonSale.Size = new Size(101, 36);
|
|
buttonSale.TabIndex = 16;
|
|
buttonSale.Text = "Продать";
|
|
buttonSale.UseVisualStyleBackColor = true;
|
|
buttonSale.Click += ButtonSale_Click;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(115, 68);
|
|
textBoxCount.Margin = new Padding(5, 4, 5, 4);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(287, 27);
|
|
textBoxCount.TabIndex = 15;
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(15, 72);
|
|
labelCount.Margin = new Padding(5, 0, 5, 0);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(93, 20);
|
|
labelCount.TabIndex = 14;
|
|
labelCount.Text = "Количество:";
|
|
//
|
|
// comboBoxReinforced
|
|
//
|
|
comboBoxReinforced.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxReinforced.FormattingEnabled = true;
|
|
comboBoxReinforced.Location = new Point(115, 20);
|
|
comboBoxReinforced.Margin = new Padding(5, 4, 5, 4);
|
|
comboBoxReinforced.Name = "comboBoxReinforced";
|
|
comboBoxReinforced.Size = new Size(287, 28);
|
|
comboBoxReinforced.TabIndex = 13;
|
|
//
|
|
// labelReinforced
|
|
//
|
|
labelReinforced.AutoSize = true;
|
|
labelReinforced.Location = new Point(15, 25);
|
|
labelReinforced.Margin = new Padding(5, 0, 5, 0);
|
|
labelReinforced.Name = "labelReinforced";
|
|
labelReinforced.Size = new Size(71, 20);
|
|
labelReinforced.TabIndex = 12;
|
|
labelReinforced.Text = "Изделие:";
|
|
//
|
|
// FormReinforcedSale
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(426, 164);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSale);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(comboBoxReinforced);
|
|
Controls.Add(labelReinforced);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "FormReinforcedSale";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Продажа изделий";
|
|
Load += FormReinforcedSale_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonCancel;
|
|
private Button buttonSale;
|
|
private TextBox textBoxCount;
|
|
private Label labelCount;
|
|
private ComboBox comboBoxReinforced;
|
|
private Label labelReinforced;
|
|
}
|
|
} |