PIbd-21_Potapov_N.S._Securi.../SecuritySystem/SecuritySystemView/FormComponents.Designer.cs

124 lines
5.5 KiB
C#
Raw Normal View History

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
//
dataGridViewComponents.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
2024-02-26 09:02:50 +04:00
dataGridViewComponents.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
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;
dataGridViewComponents.Size = new Size(637, 450);
dataGridViewComponents.TabIndex = 0;
//
// buttonAddComponent
//
buttonAddComponent.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonAddComponent.Location = new Point(660, 23);
buttonAddComponent.Name = "buttonAddComponent";
buttonAddComponent.Size = new Size(94, 29);
buttonAddComponent.TabIndex = 1;
buttonAddComponent.Text = "Добавить";
buttonAddComponent.UseVisualStyleBackColor = true;
buttonAddComponent.Click += ButtonAddComponent_Click;
//
// buttonEditComponent
//
buttonEditComponent.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonEditComponent.Location = new Point(660, 75);
buttonEditComponent.Name = "buttonEditComponent";
buttonEditComponent.Size = new Size(94, 29);
buttonEditComponent.TabIndex = 2;
buttonEditComponent.Text = "Изменить";
buttonEditComponent.UseVisualStyleBackColor = true;
buttonEditComponent.Click += ButtonEditComponent_Click;
//
// buttonDeleteComponent
//
buttonDeleteComponent.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonDeleteComponent.Location = new Point(660, 125);
buttonDeleteComponent.Name = "buttonDeleteComponent";
buttonDeleteComponent.Size = new Size(94, 29);
buttonDeleteComponent.TabIndex = 3;
buttonDeleteComponent.Text = "Удалить";
buttonDeleteComponent.UseVisualStyleBackColor = true;
buttonDeleteComponent.Click += ButtonDeleteComponent_Click;
//
// buttonRefreshComponents
//
buttonRefreshComponents.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonRefreshComponents.Location = new Point(660, 173);
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;
ClientSize = new Size(775, 450);
Controls.Add(buttonRefreshComponents);
Controls.Add(buttonDeleteComponent);
Controls.Add(buttonEditComponent);
Controls.Add(buttonAddComponent);
Controls.Add(dataGridViewComponents);
Name = "FormComponents";
Text = "Компоненты";
Load += FormComponents_Load;
((System.ComponentModel.ISupportInitialize)dataGridViewComponents).EndInit();
ResumeLayout(false);
}
#endregion
private DataGridView dataGridViewComponents;
private Button buttonAddComponent;
private Button buttonEditComponent;
private Button buttonDeleteComponent;
private Button buttonRefreshComponents;
}
}