2024-02-26 00:11:41 +04:00
|
|
|
|
namespace SecuritySystemView
|
|
|
|
|
{
|
|
|
|
|
partial class FormComponents
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
|
|
|
|
dataGridViewComponents = new DataGridView();
|
|
|
|
|
buttonAddComponent = new Button();
|
|
|
|
|
buttonEditComponent = new Button();
|
|
|
|
|
buttonDeleteComponent = new Button();
|
|
|
|
|
buttonRefreshComponents = new Button();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewComponents).BeginInit();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dataGridViewComponents
|
|
|
|
|
//
|
2024-02-26 00:26:47 +04:00
|
|
|
|
dataGridViewComponents.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
dataGridViewComponents.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
dataGridViewComponents.Location = new Point(0, 0);
|
|
|
|
|
dataGridViewComponents.MultiSelect = false;
|
|
|
|
|
dataGridViewComponents.Name = "dataGridViewComponents";
|
|
|
|
|
dataGridViewComponents.ReadOnly = true;
|
|
|
|
|
dataGridViewComponents.RowHeadersVisible = false;
|
|
|
|
|
dataGridViewComponents.RowHeadersWidth = 51;
|
|
|
|
|
dataGridViewComponents.RowTemplate.Height = 29;
|
|
|
|
|
dataGridViewComponents.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
2024-02-26 00:26:47 +04:00
|
|
|
|
dataGridViewComponents.Size = new Size(637, 450);
|
2024-02-26 00:11:41 +04:00
|
|
|
|
dataGridViewComponents.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// buttonAddComponent
|
|
|
|
|
//
|
2024-02-26 00:26:47 +04:00
|
|
|
|
buttonAddComponent.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
|
|
|
buttonAddComponent.Location = new Point(660, 23);
|
2024-02-26 00:11:41 +04:00
|
|
|
|
buttonAddComponent.Name = "buttonAddComponent";
|
|
|
|
|
buttonAddComponent.Size = new Size(94, 29);
|
|
|
|
|
buttonAddComponent.TabIndex = 1;
|
|
|
|
|
buttonAddComponent.Text = "Добавить";
|
|
|
|
|
buttonAddComponent.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonAddComponent.Click += ButtonAddComponent_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonEditComponent
|
|
|
|
|
//
|
2024-02-26 00:26:47 +04:00
|
|
|
|
buttonEditComponent.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
|
|
|
buttonEditComponent.Location = new Point(660, 75);
|
2024-02-26 00:11:41 +04:00
|
|
|
|
buttonEditComponent.Name = "buttonEditComponent";
|
|
|
|
|
buttonEditComponent.Size = new Size(94, 29);
|
|
|
|
|
buttonEditComponent.TabIndex = 2;
|
|
|
|
|
buttonEditComponent.Text = "Изменить";
|
|
|
|
|
buttonEditComponent.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonEditComponent.Click += ButtonEditComponent_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonDeleteComponent
|
|
|
|
|
//
|
2024-02-26 00:26:47 +04:00
|
|
|
|
buttonDeleteComponent.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
|
|
|
buttonDeleteComponent.Location = new Point(660, 125);
|
2024-02-26 00:11:41 +04:00
|
|
|
|
buttonDeleteComponent.Name = "buttonDeleteComponent";
|
|
|
|
|
buttonDeleteComponent.Size = new Size(94, 29);
|
|
|
|
|
buttonDeleteComponent.TabIndex = 3;
|
|
|
|
|
buttonDeleteComponent.Text = "Удалить";
|
|
|
|
|
buttonDeleteComponent.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonDeleteComponent.Click += ButtonDeleteComponent_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonRefreshComponents
|
|
|
|
|
//
|
2024-02-26 00:26:47 +04:00
|
|
|
|
buttonRefreshComponents.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
|
|
|
buttonRefreshComponents.Location = new Point(660, 173);
|
2024-02-26 00:11:41 +04:00
|
|
|
|
buttonRefreshComponents.Name = "buttonRefreshComponents";
|
|
|
|
|
buttonRefreshComponents.Size = new Size(94, 29);
|
|
|
|
|
buttonRefreshComponents.TabIndex = 4;
|
|
|
|
|
buttonRefreshComponents.Text = "Обновить";
|
|
|
|
|
buttonRefreshComponents.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonRefreshComponents.Click += ButtonRefreshComponents_Click;
|
|
|
|
|
//
|
|
|
|
|
// FormComponents
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
2024-02-26 00:26:47 +04:00
|
|
|
|
ClientSize = new Size(775, 450);
|
2024-02-26 00:11:41 +04:00
|
|
|
|
Controls.Add(buttonRefreshComponents);
|
|
|
|
|
Controls.Add(buttonDeleteComponent);
|
|
|
|
|
Controls.Add(buttonEditComponent);
|
|
|
|
|
Controls.Add(buttonAddComponent);
|
|
|
|
|
Controls.Add(dataGridViewComponents);
|
|
|
|
|
Name = "FormComponents";
|
|
|
|
|
Text = "Компоненты";
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewComponents).EndInit();
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private DataGridView dataGridViewComponents;
|
|
|
|
|
private Button buttonAddComponent;
|
|
|
|
|
private Button buttonEditComponent;
|
|
|
|
|
private Button buttonDeleteComponent;
|
|
|
|
|
private Button buttonRefreshComponents;
|
|
|
|
|
}
|
|
|
|
|
}
|