ProjectLib/ProjectLibrary/Forms/FReaders.Designer.cs

73 lines
3.0 KiB
C#

namespace ProjectLibrary.Forms
{
partial class FReaders
{
private System.ComponentModel.IContainer components = null;
private DataGridView dataGridViewReaders;
private Button buttonAdd;
private Button buttonUpdate;
private Button buttonRemove;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.dataGridViewReaders = new DataGridView();
this.buttonAdd = new Button();
this.buttonUpdate = new Button();
this.buttonRemove = new Button();
this.SuspendLayout();
// dataGridViewReaders
this.dataGridViewReaders.AllowUserToAddRows = false;
this.dataGridViewReaders.AllowUserToDeleteRows = false;
this.dataGridViewReaders.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewReaders.Location = new System.Drawing.Point(20, 20);
this.dataGridViewReaders.Name = "dataGridViewReaders";
this.dataGridViewReaders.ReadOnly = true;
this.dataGridViewReaders.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewReaders.Size = new System.Drawing.Size(600, 300);
this.Controls.Add(this.dataGridViewReaders);
// buttonAdd
this.buttonAdd.Location = new System.Drawing.Point(20, 340);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(100, 30);
this.buttonAdd.Text = "Добавить";
this.buttonAdd.Click += new EventHandler(this.ButtonAdd_Click);
this.Controls.Add(this.buttonAdd);
// buttonUpdate
this.buttonUpdate.Location = new System.Drawing.Point(140, 340);
this.buttonUpdate.Name = "buttonUpdate";
this.buttonUpdate.Size = new System.Drawing.Size(100, 30);
this.buttonUpdate.Text = "Изменить";
this.buttonUpdate.Click += new EventHandler(this.ButtonUpdate_Click);
this.Controls.Add(this.buttonUpdate);
// buttonRemove
this.buttonRemove.Location = new System.Drawing.Point(260, 340);
this.buttonRemove.Name = "buttonRemove";
this.buttonRemove.Size = new System.Drawing.Size(100, 30);
this.buttonRemove.Text = "Удалить";
this.buttonRemove.Click += new EventHandler(this.ButtonRemove_Click);
this.Controls.Add(this.buttonRemove);
// FReaders
this.ClientSize = new System.Drawing.Size(650, 400);
this.Name = "FReaders";
this.Text = "Список читателей";
this.Load += new EventHandler(this.FReaders_Load);
this.ResumeLayout(false);
}
}
}