PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantView/FormComponent.Designer.cs
2024-02-21 01:42:28 +04:00

118 lines
4.3 KiB
C#

namespace AircraftPlantView
{
partial class FormComponent
{
/// <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();
buttonSave = new Button();
labelComponentName = new Label();
labelComponentCost = new Label();
textBoxComponentName = new TextBox();
textBoxComponentCost = new TextBox();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Location = new Point(297, 76);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 0;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(216, 76);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 1;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// labelComponentName
//
labelComponentName.AutoSize = true;
labelComponentName.Location = new Point(12, 15);
labelComponentName.Name = "labelComponentName";
labelComponentName.Size = new Size(62, 15);
labelComponentName.TabIndex = 2;
labelComponentName.Text = "Название:";
//
// labelComponentCost
//
labelComponentCost.AutoSize = true;
labelComponentCost.Location = new Point(12, 44);
labelComponentCost.Name = "labelComponentCost";
labelComponentCost.Size = new Size(38, 15);
labelComponentCost.TabIndex = 3;
labelComponentCost.Text = "Цена:";
//
// textBoxComponentName
//
textBoxComponentName.Location = new Point(80, 12);
textBoxComponentName.Name = "textBoxComponentName";
textBoxComponentName.Size = new Size(292, 23);
textBoxComponentName.TabIndex = 4;
//
// textBoxComponentCost
//
textBoxComponentCost.Location = new Point(80, 41);
textBoxComponentCost.Name = "textBoxComponentCost";
textBoxComponentCost.Size = new Size(292, 23);
textBoxComponentCost.TabIndex = 5;
//
// FormComponent
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(384, 111);
Controls.Add(textBoxComponentCost);
Controls.Add(textBoxComponentName);
Controls.Add(labelComponentCost);
Controls.Add(labelComponentName);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Name = "FormComponent";
Text = "Компонент";
Load += FormComponent_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private Label labelComponentName;
private Label labelComponentCost;
private TextBox textBoxComponentName;
private TextBox textBoxComponentCost;
}
}