Aparyan.ISE-22.MotorPlant/MotorPlantView/FormEngineComponent.Designer.cs

102 lines
3.7 KiB
C#
Raw Normal View History

2024-03-23 18:12:12 +04:00
namespace MotorPlantView
{
partial class FormEngineComponent
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
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(23, 22);
labelComponent.Name = "labelComponent";
labelComponent.Size = new Size(74, 15);
labelComponent.TabIndex = 0;
labelComponent.Text = "Компонент:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(23, 60);
labelCount.Name = "labelCount";
labelCount.Size = new Size(79, 15);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// comboBoxComponent
//
comboBoxComponent.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxComponent.FormattingEnabled = true;
comboBoxComponent.Location = new Point(119, 19);
comboBoxComponent.Name = "comboBoxComponent";
comboBoxComponent.Size = new Size(248, 23);
comboBoxComponent.TabIndex = 2;
//
// textBoxCount
//
textBoxCount.Location = new Point(119, 57);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(248, 23);
textBoxCount.TabIndex = 3;
//
// buttonSave
//
buttonSave.Location = new Point(186, 86);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(87, 34);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(279, 86);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(88, 34);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormEngineComponent
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(379, 132);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxCount);
Controls.Add(comboBoxComponent);
Controls.Add(labelCount);
Controls.Add(labelComponent);
Name = "FormEngineComponent";
Text = "Компонент изделия";
ResumeLayout(false);
PerformLayout();
}
private Label labelComponent;
private Label labelCount;
private ComboBox comboBoxComponent;
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}