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

127 lines
4.7 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 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()
{
2024-04-07 17:05:30 +04:00
buttonUpd = new Button();
buttonDel = new Button();
2024-05-12 14:38:32 +04:00
buttonEdit = new Button();
buttonAdd = new Button();
dataGridView = new DataGridView();
2024-04-07 16:54:02 +04:00
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
2024-04-07 17:05:30 +04:00
// buttonUpd
2024-04-07 16:54:02 +04:00
//
2024-05-12 14:38:32 +04:00
buttonUpd.Location = new Point(432, 152);
buttonUpd.Margin = new Padding(4, 3, 4, 3);
2024-04-07 17:05:30 +04:00
buttonUpd.Name = "buttonUpd";
2024-05-12 14:38:32 +04:00
buttonUpd.Size = new Size(88, 27);
buttonUpd.TabIndex = 4;
buttonUpd.Text = "Обновить";
2024-04-07 17:05:30 +04:00
buttonUpd.UseVisualStyleBackColor = true;
2024-05-12 14:38:32 +04:00
buttonUpd.Click += ButtonUpd_Click;
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
// buttonDel
2024-04-07 16:54:02 +04:00
//
2024-05-12 14:38:32 +04:00
buttonDel.Location = new Point(432, 105);
buttonDel.Margin = new Padding(4, 3, 4, 3);
2024-04-07 17:05:30 +04:00
buttonDel.Name = "buttonDel";
2024-05-12 14:38:32 +04:00
buttonDel.Size = new Size(88, 27);
2024-04-07 17:05:30 +04:00
buttonDel.TabIndex = 3;
buttonDel.Text = "Удалить";
buttonDel.UseVisualStyleBackColor = true;
2024-05-12 14:38:32 +04:00
buttonDel.Click += ButtonDel_Click;
//
// buttonEdit
2024-04-07 16:54:02 +04:00
//
2024-05-12 14:38:32 +04:00
buttonEdit.Location = new Point(432, 58);
buttonEdit.Margin = new Padding(4, 3, 4, 3);
buttonEdit.Name = "buttonEdit";
buttonEdit.Size = new Size(88, 27);
buttonEdit.TabIndex = 2;
buttonEdit.Text = "Изменить";
buttonEdit.UseVisualStyleBackColor = true;
buttonEdit.Click += ButtonEdit_Click;
2024-04-07 16:54:02 +04:00
//
2024-05-12 14:38:32 +04:00
// buttonAdd
//
buttonAdd.Location = new Point(432, 14);
buttonAdd.Margin = new Padding(4, 3, 4, 3);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(88, 27);
buttonAdd.TabIndex = 1;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += ButtonAdd_Click;
//
// dataGridView
//
dataGridView.AllowUserToAddRows = false;
dataGridView.AllowUserToDeleteRows = false;
dataGridView.BackgroundColor = SystemColors.ControlLightLight;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Dock = DockStyle.Left;
dataGridView.Location = new Point(0, 0);
dataGridView.Margin = new Padding(4, 3, 4, 3);
dataGridView.MultiSelect = false;
dataGridView.Name = "dataGridView";
dataGridView.ReadOnly = true;
dataGridView.RowHeadersVisible = false;
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dataGridView.Size = new Size(408, 360);
dataGridView.TabIndex = 0;
2024-04-07 16:54:02 +04:00
//
// FormComponents
//
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(541, 360);
2024-04-07 17:05:30 +04:00
Controls.Add(buttonUpd);
2024-05-12 14:38:32 +04:00
Controls.Add(buttonDel);
Controls.Add(buttonEdit);
2024-04-07 16:54:02 +04:00
Controls.Add(buttonAdd);
2024-04-07 17:05:30 +04:00
Controls.Add(dataGridView);
2024-05-12 14:38:32 +04:00
Margin = new Padding(4, 3, 4, 3);
2024-04-07 16:54:02 +04:00
Name = "FormComponents";
2024-05-12 14:38:32 +04:00
StartPosition = FormStartPosition.CenterScreen;
Text = "Компоненты";
2024-04-07 16:54:02 +04:00
Load += FormComponents_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
}
#endregion
2024-04-07 17:05:30 +04:00
private Button buttonUpd;
private Button buttonDel;
2024-05-12 14:38:32 +04:00
private Button buttonEdit;
private Button buttonAdd;
private DataGridView dataGridView;
2024-04-07 16:54:02 +04:00
}
}