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

130 lines
4.7 KiB
C#
Raw Normal View History

2024-04-07 17:40:43 +04:00
namespace SoftwareInstallationView
2024-04-07 16:54:02 +04:00
{
2024-04-07 17:40:43 +04:00
partial class FormSoftwares
2024-04-07 16:54:02 +04:00
{
/// <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:40:43 +04:00
ToolsPanel = new Panel();
dataGridView = new DataGridView();
2024-04-07 16:54:02 +04:00
buttonRef = new Button();
buttonDel = new Button();
buttonUpd = new Button();
buttonAdd = new Button();
2024-04-07 17:40:43 +04:00
ToolsPanel.SuspendLayout();
2024-04-07 16:54:02 +04:00
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
2024-04-07 17:40:43 +04:00
// ToolsPanel
//
ToolsPanel.Controls.Add(dataGridView);
ToolsPanel.Controls.Add(buttonRef);
ToolsPanel.Controls.Add(buttonDel);
ToolsPanel.Controls.Add(buttonUpd);
ToolsPanel.Controls.Add(buttonAdd);
ToolsPanel.Location = new Point(-1, -1);
ToolsPanel.Name = "ToolsPanel";
ToolsPanel.Size = new Size(819, 481);
ToolsPanel.TabIndex = 3;
//
// dataGridView
//
dataGridView.AllowUserToAddRows = false;
dataGridView.AllowUserToDeleteRows = false;
dataGridView.BackgroundColor = Color.White;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Location = new Point(0, 0);
dataGridView.Name = "dataGridView";
dataGridView.ReadOnly = true;
dataGridView.RowHeadersWidth = 51;
dataGridView.RowTemplate.Height = 29;
dataGridView.Size = new Size(590, 479);
dataGridView.TabIndex = 2;
//
2024-04-07 16:54:02 +04:00
// buttonRef
//
2024-04-07 17:40:43 +04:00
buttonRef.Location = new Point(610, 231);
2024-04-07 16:54:02 +04:00
buttonRef.Name = "buttonRef";
2024-04-07 17:40:43 +04:00
buttonRef.Size = new Size(126, 36);
buttonRef.TabIndex = 3;
2024-04-07 16:54:02 +04:00
buttonRef.Text = "Обновить";
buttonRef.UseVisualStyleBackColor = true;
2024-04-07 17:40:43 +04:00
buttonRef.Click += ButtonRef_Click;
2024-04-07 16:54:02 +04:00
//
// buttonDel
//
2024-04-07 17:40:43 +04:00
buttonDel.Location = new Point(610, 167);
2024-04-07 16:54:02 +04:00
buttonDel.Name = "buttonDel";
2024-04-07 17:40:43 +04:00
buttonDel.Size = new Size(126, 36);
buttonDel.TabIndex = 2;
2024-04-07 16:54:02 +04:00
buttonDel.Text = "Удалить";
buttonDel.UseVisualStyleBackColor = true;
2024-04-07 17:40:43 +04:00
buttonDel.Click += ButtonDel_Click;
2024-04-07 16:54:02 +04:00
//
// buttonUpd
//
2024-04-07 17:40:43 +04:00
buttonUpd.Location = new Point(610, 101);
2024-04-07 16:54:02 +04:00
buttonUpd.Name = "buttonUpd";
2024-04-07 17:40:43 +04:00
buttonUpd.Size = new Size(126, 36);
buttonUpd.TabIndex = 1;
2024-04-07 16:54:02 +04:00
buttonUpd.Text = "Изменить";
buttonUpd.UseVisualStyleBackColor = true;
2024-04-07 17:40:43 +04:00
buttonUpd.Click += ButtonUpd_Click;
2024-04-07 16:54:02 +04:00
//
// buttonAdd
//
2024-04-07 17:40:43 +04:00
buttonAdd.Location = new Point(610, 41);
2024-04-07 16:54:02 +04:00
buttonAdd.Name = "buttonAdd";
2024-04-07 17:40:43 +04:00
buttonAdd.Size = new Size(126, 36);
buttonAdd.TabIndex = 0;
2024-04-07 16:54:02 +04:00
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
2024-04-07 17:40:43 +04:00
buttonAdd.Click += ButtonAdd_Click;
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
// FormSoftwares
2024-04-07 16:54:02 +04:00
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
2024-04-07 17:40:43 +04:00
ClientSize = new Size(808, 479);
Controls.Add(ToolsPanel);
Name = "FormSoftwares";
Text = "ПО";
Load += FormSoftwarees_Load;
ToolsPanel.ResumeLayout(false);
2024-04-07 16:54:02 +04:00
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
}
#endregion
2024-04-07 17:05:30 +04:00
2024-04-07 17:40:43 +04:00
private Panel ToolsPanel;
2024-04-07 16:54:02 +04:00
private Button buttonRef;
private Button buttonDel;
private Button buttonUpd;
private Button buttonAdd;
private DataGridView dataGridView;
}
}