120 lines
4.3 KiB
C#
120 lines
4.3 KiB
C#
namespace PrecastConcretePlantView
|
|
{
|
|
partial class FormReinforcedComponent
|
|
{
|
|
/// <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()
|
|
{
|
|
labelComponent = new Label();
|
|
labelCount = new Label();
|
|
comboBoxComponent = new ComboBox();
|
|
textBoxCount = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelComponent
|
|
//
|
|
labelComponent.AutoSize = true;
|
|
labelComponent.Location = new Point(12, 26);
|
|
labelComponent.Name = "labelComponent";
|
|
labelComponent.Size = new Size(95, 20);
|
|
labelComponent.TabIndex = 0;
|
|
labelComponent.Text = "Компонент :";
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(12, 84);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(97, 20);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Количество :";
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
comboBoxComponent.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxComponent.FormattingEnabled = true;
|
|
comboBoxComponent.Location = new Point(113, 23);
|
|
comboBoxComponent.Name = "comboBoxComponent";
|
|
comboBoxComponent.Size = new Size(281, 28);
|
|
comboBoxComponent.TabIndex = 2;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(113, 81);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(281, 27);
|
|
textBoxCount.TabIndex = 3;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(168, 136);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(104, 36);
|
|
buttonSave.TabIndex = 4;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(290, 136);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(104, 36);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormReinforcedComponent
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(433, 201);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(comboBoxComponent);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(labelComponent);
|
|
Name = "FormReinforcedComponent";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Компонент изделия";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelComponent;
|
|
private Label labelCount;
|
|
private ComboBox comboBoxComponent;
|
|
private TextBox textBoxCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |