2024-02-26 00:11:41 +04:00
|
|
|
|
namespace SecuritySystemView
|
|
|
|
|
{
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
textBoxComponentName = new TextBox();
|
|
|
|
|
textBoxComponentCost = new TextBox();
|
|
|
|
|
labelComponentName = new Label();
|
|
|
|
|
labelComponentCost = new Label();
|
|
|
|
|
buttonSaveComponent = new Button();
|
|
|
|
|
buttonCancel = new Button();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// textBoxComponentName
|
|
|
|
|
//
|
|
|
|
|
textBoxComponentName.Location = new Point(98, 6);
|
|
|
|
|
textBoxComponentName.Name = "textBoxComponentName";
|
|
|
|
|
textBoxComponentName.Size = new Size(372, 27);
|
|
|
|
|
textBoxComponentName.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// textBoxComponentCost
|
|
|
|
|
//
|
|
|
|
|
textBoxComponentCost.Location = new Point(98, 41);
|
|
|
|
|
textBoxComponentCost.Name = "textBoxComponentCost";
|
|
|
|
|
textBoxComponentCost.Size = new Size(125, 27);
|
|
|
|
|
textBoxComponentCost.TabIndex = 1;
|
|
|
|
|
//
|
|
|
|
|
// labelComponentName
|
|
|
|
|
//
|
|
|
|
|
labelComponentName.AutoSize = true;
|
|
|
|
|
labelComponentName.Location = new Point(12, 9);
|
|
|
|
|
labelComponentName.Name = "labelComponentName";
|
|
|
|
|
labelComponentName.Size = new Size(80, 20);
|
|
|
|
|
labelComponentName.TabIndex = 2;
|
|
|
|
|
labelComponentName.Text = "Название:";
|
|
|
|
|
//
|
|
|
|
|
// labelComponentCost
|
|
|
|
|
//
|
|
|
|
|
labelComponentCost.AutoSize = true;
|
|
|
|
|
labelComponentCost.Location = new Point(12, 41);
|
|
|
|
|
labelComponentCost.Name = "labelComponentCost";
|
|
|
|
|
labelComponentCost.Size = new Size(48, 20);
|
|
|
|
|
labelComponentCost.TabIndex = 3;
|
|
|
|
|
labelComponentCost.Text = "Цена:";
|
|
|
|
|
//
|
|
|
|
|
// buttonSaveComponent
|
|
|
|
|
//
|
|
|
|
|
buttonSaveComponent.Location = new Point(211, 80);
|
|
|
|
|
buttonSaveComponent.Name = "buttonSaveComponent";
|
|
|
|
|
buttonSaveComponent.Size = new Size(115, 29);
|
|
|
|
|
buttonSaveComponent.TabIndex = 4;
|
|
|
|
|
buttonSaveComponent.Text = "Сохранить";
|
|
|
|
|
buttonSaveComponent.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSaveComponent.Click += ButtonSaveComponent_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
|
|
|
|
buttonCancel.Location = new Point(348, 80);
|
|
|
|
|
buttonCancel.Name = "buttonCancel";
|
|
|
|
|
buttonCancel.Size = new Size(122, 29);
|
|
|
|
|
buttonCancel.TabIndex = 5;
|
|
|
|
|
buttonCancel.Text = "Отмена";
|
|
|
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
|
|
|
//
|
|
|
|
|
// FormComponent
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(482, 119);
|
|
|
|
|
Controls.Add(buttonCancel);
|
|
|
|
|
Controls.Add(buttonSaveComponent);
|
|
|
|
|
Controls.Add(labelComponentCost);
|
|
|
|
|
Controls.Add(labelComponentName);
|
|
|
|
|
Controls.Add(textBoxComponentCost);
|
|
|
|
|
Controls.Add(textBoxComponentName);
|
|
|
|
|
Name = "FormComponent";
|
|
|
|
|
Text = "Компонент";
|
2024-02-26 00:47:21 +04:00
|
|
|
|
Load += FormComponent_Load;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private TextBox textBoxComponentName;
|
|
|
|
|
private TextBox textBoxComponentCost;
|
|
|
|
|
private Label labelComponentName;
|
|
|
|
|
private Label labelComponentCost;
|
|
|
|
|
private Button buttonSaveComponent;
|
|
|
|
|
private Button buttonCancel;
|
|
|
|
|
}
|
|
|
|
|
}
|