99 lines
3.9 KiB
C#
99 lines
3.9 KiB
C#
namespace _0303RogovaNeshina
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.btAdd = new System.Windows.Forms.Button();
|
|
this.btEdit = new System.Windows.Forms.Button();
|
|
this.btDelete = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Location = new System.Drawing.Point(13, 13);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.Size = new System.Drawing.Size(615, 425);
|
|
this.dataGridView1.TabIndex = 0;
|
|
//
|
|
// btAdd
|
|
//
|
|
this.btAdd.Location = new System.Drawing.Point(634, 13);
|
|
this.btAdd.Name = "btAdd";
|
|
this.btAdd.Size = new System.Drawing.Size(154, 23);
|
|
this.btAdd.TabIndex = 1;
|
|
this.btAdd.Text = "Добавить";
|
|
this.btAdd.UseVisualStyleBackColor = true;
|
|
this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
|
|
//
|
|
// btEdit
|
|
//
|
|
this.btEdit.Location = new System.Drawing.Point(634, 42);
|
|
this.btEdit.Name = "btEdit";
|
|
this.btEdit.Size = new System.Drawing.Size(154, 23);
|
|
this.btEdit.TabIndex = 2;
|
|
this.btEdit.Text = "Редактировать";
|
|
this.btEdit.UseVisualStyleBackColor = true;
|
|
this.btEdit.Click += new System.EventHandler(this.btEdit_Click);
|
|
//
|
|
// btDelete
|
|
//
|
|
this.btDelete.Location = new System.Drawing.Point(634, 71);
|
|
this.btDelete.Name = "btDelete";
|
|
this.btDelete.Size = new System.Drawing.Size(154, 23);
|
|
this.btDelete.TabIndex = 3;
|
|
this.btDelete.Text = "Удалить";
|
|
this.btDelete.UseVisualStyleBackColor = true;
|
|
this.btDelete.Click += new System.EventHandler(this.btDelete_Click_1);
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.btDelete);
|
|
this.Controls.Add(this.btEdit);
|
|
this.Controls.Add(this.btAdd);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Name = "MainForm";
|
|
this.Text = "MainForm";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.Button btAdd;
|
|
private System.Windows.Forms.Button btEdit;
|
|
private System.Windows.Forms.Button btDelete;
|
|
}
|
|
} |