ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallation/FormComponent.Designer.cs

123 lines
4.2 KiB
C#
Raw Normal View History

2024-05-12 14:38:32 +04:00
namespace SoftwareInstallationView
2024-04-07 16:54:02 +04:00
{
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()
{
2024-05-12 14:38:32 +04:00
labelName = new Label();
labelCost = new Label();
2024-04-07 17:05:30 +04:00
textBoxName = new TextBox();
textBoxCost = new TextBox();
2024-05-12 14:38:32 +04:00
buttonSave = new Button();
buttonCancel = new Button();
2024-04-07 16:54:02 +04:00
SuspendLayout();
//
2024-05-12 14:38:32 +04:00
// labelName
2024-04-07 16:54:02 +04:00
//
2024-05-12 14:38:32 +04:00
labelName.AutoSize = true;
labelName.Location = new Point(14, 10);
labelName.Name = "labelName";
labelName.Size = new Size(65, 15);
labelName.TabIndex = 0;
labelName.Text = "Название :";
2024-04-07 17:05:30 +04:00
//
2024-05-12 14:38:32 +04:00
// labelCost
2024-04-07 17:05:30 +04:00
//
2024-05-12 14:38:32 +04:00
labelCost.AutoSize = true;
labelCost.Location = new Point(14, 39);
labelCost.Name = "labelCost";
labelCost.Size = new Size(41, 15);
labelCost.TabIndex = 1;
labelCost.Text = "Цена :";
2024-04-07 17:05:30 +04:00
//
// textBoxName
//
2024-05-12 14:38:32 +04:00
textBoxName.Location = new Point(91, 7);
textBoxName.Margin = new Padding(4, 3, 4, 3);
2024-04-07 17:05:30 +04:00
textBoxName.Name = "textBoxName";
2024-05-12 14:38:32 +04:00
textBoxName.Size = new Size(252, 23);
textBoxName.TabIndex = 2;
2024-04-07 17:05:30 +04:00
//
// textBoxCost
//
2024-05-12 14:38:32 +04:00
textBoxCost.Location = new Point(91, 36);
textBoxCost.Margin = new Padding(4, 3, 4, 3);
2024-04-07 17:05:30 +04:00
textBoxCost.Name = "textBoxCost";
2024-05-12 14:38:32 +04:00
textBoxCost.Size = new Size(129, 23);
textBoxCost.TabIndex = 4;
//
// buttonSave
//
buttonSave.Location = new Point(162, 71);
buttonSave.Margin = new Padding(4, 3, 4, 3);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(88, 27);
buttonSave.TabIndex = 5;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(260, 71);
buttonCancel.Margin = new Padding(4, 3, 4, 3);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(88, 27);
buttonCancel.TabIndex = 6;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
2024-04-07 16:54:02 +04:00
//
// FormComponent
//
2024-05-12 14:38:32 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
2024-04-07 16:54:02 +04:00
AutoScaleMode = AutoScaleMode.Font;
2024-05-12 14:38:32 +04:00
ClientSize = new Size(364, 110);
2024-04-07 17:05:30 +04:00
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
2024-05-12 14:38:32 +04:00
Controls.Add(textBoxCost);
Controls.Add(textBoxName);
Controls.Add(labelCost);
Controls.Add(labelName);
2024-04-07 16:54:02 +04:00
Name = "FormComponent";
2024-05-12 14:38:32 +04:00
StartPosition = FormStartPosition.CenterScreen;
2024-04-07 16:54:02 +04:00
Text = "Компонент";
2024-05-12 14:38:32 +04:00
Load += FormComponent_Load;
2024-04-07 16:54:02 +04:00
ResumeLayout(false);
PerformLayout();
}
#endregion
2024-05-12 14:38:32 +04:00
private Label labelName;
private Label labelCost;
2024-04-07 17:05:30 +04:00
private TextBox textBoxName;
private TextBox textBoxCost;
2024-05-12 14:38:32 +04:00
private Button buttonSave;
private Button buttonCancel;
2024-04-07 16:54:02 +04:00
}
}