129 lines
4.7 KiB
C#
129 lines
4.7 KiB
C#
namespace SoftwareInstallationView
|
|
{
|
|
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()
|
|
{
|
|
dataGridView = new DataGridView();
|
|
ToolsPanel = new Panel();
|
|
buttonUpdate = new Button();
|
|
buttonDelete = new Button();
|
|
buttonEdit = new Button();
|
|
buttonAdd = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
ToolsPanel.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Location = new Point(11, 12);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.Size = new Size(590, 427);
|
|
dataGridView.TabIndex = 0;
|
|
//
|
|
// ToolsPanel
|
|
//
|
|
ToolsPanel.Controls.Add(buttonUpdate);
|
|
ToolsPanel.Controls.Add(buttonDelete);
|
|
ToolsPanel.Controls.Add(buttonEdit);
|
|
ToolsPanel.Controls.Add(buttonAdd);
|
|
ToolsPanel.Location = new Point(608, 12);
|
|
ToolsPanel.Name = "ToolsPanel";
|
|
ToolsPanel.Size = new Size(181, 427);
|
|
ToolsPanel.TabIndex = 1;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
buttonUpdate.Location = new Point(31, 205);
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
buttonUpdate.Size = new Size(126, 36);
|
|
buttonUpdate.TabIndex = 3;
|
|
buttonUpdate.Text = "Обновить";
|
|
buttonUpdate.UseVisualStyleBackColor = true;
|
|
buttonUpdate.Click += ButtonRef_Click;
|
|
//
|
|
// buttonDelete
|
|
//
|
|
buttonDelete.Location = new Point(31, 141);
|
|
buttonDelete.Name = "buttonDelete";
|
|
buttonDelete.Size = new Size(126, 36);
|
|
buttonDelete.TabIndex = 2;
|
|
buttonDelete.Text = "Удалить";
|
|
buttonDelete.UseVisualStyleBackColor = true;
|
|
buttonDelete.Click += ButtonDel_Click;
|
|
//
|
|
// buttonEdit
|
|
//
|
|
buttonEdit.Location = new Point(31, 76);
|
|
buttonEdit.Name = "buttonEdit";
|
|
buttonEdit.Size = new Size(126, 36);
|
|
buttonEdit.TabIndex = 1;
|
|
buttonEdit.Text = "Изменить";
|
|
buttonEdit.UseVisualStyleBackColor = true;
|
|
buttonEdit.Click += ButtonUpd_Click;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(31, 16);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(126, 36);
|
|
buttonAdd.TabIndex = 0;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonAdd_Click;
|
|
//
|
|
// FormComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 451);
|
|
Controls.Add(ToolsPanel);
|
|
Controls.Add(dataGridView);
|
|
Name = "FormComponents";
|
|
Text = "Компоненты";
|
|
Load += FormComponents_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ToolsPanel.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Panel ToolsPanel;
|
|
private Button buttonUpdate;
|
|
private Button buttonDelete;
|
|
private Button buttonEdit;
|
|
private Button buttonAdd;
|
|
}
|
|
} |