118 lines
4.0 KiB
C#
118 lines
4.0 KiB
C#
|
namespace AutomobilePlantView
|
|||
|
{
|
|||
|
partial class FormCarComponent
|
|||
|
{
|
|||
|
/// <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, 9);
|
|||
|
labelComponent.Name = "labelComponent";
|
|||
|
labelComponent.Size = new Size(74, 15);
|
|||
|
labelComponent.TabIndex = 0;
|
|||
|
labelComponent.Text = "Component:";
|
|||
|
//
|
|||
|
// labelCount
|
|||
|
//
|
|||
|
labelCount.AutoSize = true;
|
|||
|
labelCount.Location = new Point(12, 38);
|
|||
|
labelCount.Name = "labelCount";
|
|||
|
labelCount.Size = new Size(43, 15);
|
|||
|
labelCount.TabIndex = 1;
|
|||
|
labelCount.Text = "Count:";
|
|||
|
//
|
|||
|
// comboBoxComponent
|
|||
|
//
|
|||
|
comboBoxComponent.FormattingEnabled = true;
|
|||
|
comboBoxComponent.Location = new Point(92, 6);
|
|||
|
comboBoxComponent.Name = "comboBoxComponent";
|
|||
|
comboBoxComponent.Size = new Size(520, 23);
|
|||
|
comboBoxComponent.TabIndex = 2;
|
|||
|
//
|
|||
|
// textBoxCount
|
|||
|
//
|
|||
|
textBoxCount.Location = new Point(92, 35);
|
|||
|
textBoxCount.Name = "textBoxCount";
|
|||
|
textBoxCount.Size = new Size(520, 23);
|
|||
|
textBoxCount.TabIndex = 3;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(456, 64);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(75, 23);
|
|||
|
buttonSave.TabIndex = 4;
|
|||
|
buttonSave.Text = "Save";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += ButtonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(537, 64);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(75, 23);
|
|||
|
buttonCancel.TabIndex = 5;
|
|||
|
buttonCancel.Text = "Cancel";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += ButtonCancel_Click;
|
|||
|
//
|
|||
|
// FormCarComponent
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(624, 94);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxCount);
|
|||
|
Controls.Add(comboBoxComponent);
|
|||
|
Controls.Add(labelCount);
|
|||
|
Controls.Add(labelComponent);
|
|||
|
Name = "FormCarComponent";
|
|||
|
Text = "Car's component";
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelComponent;
|
|||
|
private Label labelCount;
|
|||
|
private ComboBox comboBoxComponent;
|
|||
|
private TextBox textBoxCount;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|