106 lines
3.9 KiB
C#
106 lines
3.9 KiB
C#
namespace ProjectLibrary.Forms
|
|
{
|
|
partial class FBooks
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridViewBooks = new DataGridView();
|
|
buttonAdd = new Button();
|
|
buttonUpdate = new Button();
|
|
buttonRemove = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewBooks).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridViewBooks
|
|
//
|
|
dataGridViewBooks.AllowUserToAddRows = false;
|
|
dataGridViewBooks.AllowUserToDeleteRows = false;
|
|
dataGridViewBooks.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewBooks.Location = new Point(10, 9);
|
|
dataGridViewBooks.Margin = new Padding(3, 2, 3, 2);
|
|
dataGridViewBooks.Name = "dataGridViewBooks";
|
|
dataGridViewBooks.ReadOnly = true;
|
|
dataGridViewBooks.RowHeadersWidth = 51;
|
|
dataGridViewBooks.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridViewBooks.Size = new Size(602, 254);
|
|
dataGridViewBooks.TabIndex = 8;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(27, 267);
|
|
buttonAdd.Margin = new Padding(3, 2, 3, 2);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(161, 37);
|
|
buttonAdd.TabIndex = 9;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
buttonUpdate.Location = new Point(247, 267);
|
|
buttonUpdate.Margin = new Padding(3, 2, 3, 2);
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
buttonUpdate.Size = new Size(161, 37);
|
|
buttonUpdate.TabIndex = 10;
|
|
buttonUpdate.Text = "Изменить";
|
|
buttonUpdate.Click += buttonUpdate_Click;
|
|
//
|
|
// buttonRemove
|
|
//
|
|
buttonRemove.Location = new Point(452, 267);
|
|
buttonRemove.Margin = new Padding(3, 2, 3, 2);
|
|
buttonRemove.Name = "buttonRemove";
|
|
buttonRemove.Size = new Size(161, 37);
|
|
buttonRemove.TabIndex = 11;
|
|
buttonRemove.Text = "Удалить";
|
|
buttonRemove.Click += buttonRemove_Click;
|
|
//
|
|
// FBooks
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(700, 338);
|
|
Controls.Add(dataGridViewBooks);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(buttonUpdate);
|
|
Controls.Add(buttonRemove);
|
|
Margin = new Padding(3, 2, 3, 2);
|
|
Name = "FBooks";
|
|
Text = "FBooks";
|
|
Load += FBooks_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewBooks).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridViewBooks;
|
|
private Button buttonAdd;
|
|
private Button buttonUpdate;
|
|
private Button buttonRemove;
|
|
}
|
|
} |