115 lines
3.3 KiB
C#
115 lines
3.3 KiB
C#
namespace BookShopView
|
|
{
|
|
partial class FormBooks
|
|
{
|
|
/// <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();
|
|
ButtonDelete = new Button();
|
|
ButtonUpdate = new Button();
|
|
buttonAdd = new Button();
|
|
buttonUpd = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.BackgroundColor = SystemColors.Control;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Location = new Point(12, 12);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.Size = new Size(461, 402);
|
|
dataGridView.TabIndex = 0;
|
|
//
|
|
// ButtonDelete
|
|
//
|
|
ButtonDelete.Location = new Point(493, 183);
|
|
ButtonDelete.Name = "ButtonDelete";
|
|
ButtonDelete.Size = new Size(115, 54);
|
|
ButtonDelete.TabIndex = 1;
|
|
ButtonDelete.Text = "Удалить";
|
|
ButtonDelete.UseVisualStyleBackColor = true;
|
|
ButtonDelete.Click += ButtonDel_Click;
|
|
//
|
|
// ButtonUpdate
|
|
//
|
|
ButtonUpdate.Location = new Point(493, 266);
|
|
ButtonUpdate.Name = "ButtonUpdate";
|
|
ButtonUpdate.Size = new Size(115, 58);
|
|
ButtonUpdate.TabIndex = 2;
|
|
ButtonUpdate.Text = "Обновить";
|
|
ButtonUpdate.UseVisualStyleBackColor = true;
|
|
ButtonUpdate.Click += ButtonRef_Click;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(493, 33);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(115, 52);
|
|
buttonAdd.TabIndex = 3;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonUpd
|
|
//
|
|
buttonUpd.Location = new Point(493, 105);
|
|
buttonUpd.Name = "buttonUpd";
|
|
buttonUpd.Size = new Size(115, 52);
|
|
buttonUpd.TabIndex = 4;
|
|
buttonUpd.Text = "Изменить";
|
|
buttonUpd.UseVisualStyleBackColor = true;
|
|
buttonUpd.Click += ButtonUpd_Click;
|
|
//
|
|
// FormBooks
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(620, 426);
|
|
Controls.Add(buttonUpd);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(ButtonUpdate);
|
|
Controls.Add(ButtonDelete);
|
|
Controls.Add(dataGridView);
|
|
Name = "FormBooks";
|
|
Text = "Книги";
|
|
Load += FormBooks_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private Button ButtonDelete;
|
|
private Button ButtonUpdate;
|
|
private Button buttonAdd;
|
|
private Button buttonUpd;
|
|
}
|
|
} |