123 lines
5.1 KiB
C#
123 lines
5.1 KiB
C#
namespace SoftwareInstallationView
|
|
{
|
|
partial class FormPackages
|
|
{
|
|
/// <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()
|
|
{
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.buttonUpdate = new System.Windows.Forms.Button();
|
|
this.buttonDelete = new System.Windows.Forms.Button();
|
|
this.buttonEdit = new System.Windows.Forms.Button();
|
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|
this.ColumnId = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnId});
|
|
this.dataGridView.Location = new System.Drawing.Point(1, 1);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(445, 373);
|
|
this.dataGridView.TabIndex = 10;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
this.buttonUpdate.Location = new System.Drawing.Point(461, 193);
|
|
this.buttonUpdate.Name = "buttonUpdate";
|
|
this.buttonUpdate.Size = new System.Drawing.Size(97, 30);
|
|
this.buttonUpdate.TabIndex = 9;
|
|
this.buttonUpdate.Text = "Обновить";
|
|
this.buttonUpdate.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonDelete
|
|
//
|
|
this.buttonDelete.Location = new System.Drawing.Point(461, 135);
|
|
this.buttonDelete.Name = "buttonDelete";
|
|
this.buttonDelete.Size = new System.Drawing.Size(97, 30);
|
|
this.buttonDelete.TabIndex = 8;
|
|
this.buttonDelete.Text = "Удалить";
|
|
this.buttonDelete.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonEdit
|
|
//
|
|
this.buttonEdit.Location = new System.Drawing.Point(461, 79);
|
|
this.buttonEdit.Name = "buttonEdit";
|
|
this.buttonEdit.Size = new System.Drawing.Size(97, 30);
|
|
this.buttonEdit.TabIndex = 7;
|
|
this.buttonEdit.Text = "Изменить";
|
|
this.buttonEdit.UseVisualStyleBackColor = true;
|
|
this.buttonEdit.Click += new System.EventHandler(this.buttonEdit_Click);
|
|
//
|
|
// buttonAdd
|
|
//
|
|
this.buttonAdd.Location = new System.Drawing.Point(461, 22);
|
|
this.buttonAdd.Name = "buttonAdd";
|
|
this.buttonAdd.Size = new System.Drawing.Size(97, 30);
|
|
this.buttonAdd.TabIndex = 6;
|
|
this.buttonAdd.Text = "Добавить";
|
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|
//
|
|
// ColumnId
|
|
//
|
|
this.ColumnId.FillWeight = 200F;
|
|
this.ColumnId.HeaderText = "Id";
|
|
this.ColumnId.Name = "ColumnId";
|
|
this.ColumnId.Visible = false;
|
|
this.ColumnId.Width = 200;
|
|
//
|
|
// FormPackages
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(565, 374);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Controls.Add(this.buttonUpdate);
|
|
this.Controls.Add(this.buttonDelete);
|
|
this.Controls.Add(this.buttonEdit);
|
|
this.Controls.Add(this.buttonAdd);
|
|
this.Name = "FormPackages";
|
|
this.Text = "FormPackages";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Button buttonUpdate;
|
|
private Button buttonDelete;
|
|
private Button buttonEdit;
|
|
private Button buttonAdd;
|
|
private DataGridViewTextBoxColumn ColumnId;
|
|
}
|
|
} |