117 lines
4.9 KiB
C#
117 lines
4.9 KiB
C#
namespace BookShopView
|
|
{
|
|
partial class FormGenres
|
|
{
|
|
/// <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.ButtonDelete = new System.Windows.Forms.Button();
|
|
this.ButtonUpdate = new System.Windows.Forms.Button();
|
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|
this.buttonUpd = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.DataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// DataGridView
|
|
//
|
|
this.DataGridView.BackgroundColor = System.Drawing.SystemColors.Control;
|
|
this.DataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.DataGridView.Location = new System.Drawing.Point(12, 12);
|
|
this.DataGridView.Name = "DataGridView";
|
|
this.DataGridView.RowHeadersWidth = 51;
|
|
this.DataGridView.RowTemplate.Height = 29;
|
|
this.DataGridView.Size = new System.Drawing.Size(461, 345);
|
|
this.DataGridView.TabIndex = 0;
|
|
//
|
|
// ButtonDelete
|
|
//
|
|
this.ButtonDelete.Location = new System.Drawing.Point(493, 183);
|
|
this.ButtonDelete.Name = "ButtonDelete";
|
|
this.ButtonDelete.Size = new System.Drawing.Size(115, 54);
|
|
this.ButtonDelete.TabIndex = 1;
|
|
this.ButtonDelete.Text = "Удалить";
|
|
this.ButtonDelete.UseVisualStyleBackColor = true;
|
|
this.ButtonDelete.Click += new System.EventHandler(this.DeleteButton_Click);
|
|
//
|
|
// ButtonUpdate
|
|
//
|
|
this.ButtonUpdate.Location = new System.Drawing.Point(493, 266);
|
|
this.ButtonUpdate.Name = "ButtonUpdate";
|
|
this.ButtonUpdate.Size = new System.Drawing.Size(115, 58);
|
|
this.ButtonUpdate.TabIndex = 2;
|
|
this.ButtonUpdate.Text = "Обновить";
|
|
this.ButtonUpdate.UseVisualStyleBackColor = true;
|
|
this.ButtonUpdate.Click += new System.EventHandler(this.UpdateButton_Click);
|
|
//
|
|
// buttonAdd
|
|
//
|
|
this.buttonAdd.Location = new System.Drawing.Point(493, 29);
|
|
this.buttonAdd.Name = "buttonAdd";
|
|
this.buttonAdd.Size = new System.Drawing.Size(115, 52);
|
|
this.buttonAdd.TabIndex = 3;
|
|
this.buttonAdd.Text = "Добавить";
|
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|
//
|
|
// buttonUpd
|
|
//
|
|
this.buttonUpd.Location = new System.Drawing.Point(493, 105);
|
|
this.buttonUpd.Name = "buttonUpd";
|
|
this.buttonUpd.Size = new System.Drawing.Size(115, 52);
|
|
this.buttonUpd.TabIndex = 4;
|
|
this.buttonUpd.Text = "Изменить";
|
|
this.buttonUpd.UseVisualStyleBackColor = true;
|
|
this.buttonUpd.Click += new System.EventHandler(this.ChangeButton_Click);
|
|
//
|
|
// FormGenres
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(620, 372);
|
|
this.Controls.Add(this.buttonUpd);
|
|
this.Controls.Add(this.buttonAdd);
|
|
this.Controls.Add(this.ButtonUpdate);
|
|
this.Controls.Add(this.ButtonDelete);
|
|
this.Controls.Add(this.DataGridView);
|
|
this.Name = "FormGenres";
|
|
this.Text = "Жанры";
|
|
this.Load += new System.EventHandler(this.FormGenres_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.DataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView DataGridView;
|
|
private Button ButtonDelete;
|
|
private Button ButtonUpdate;
|
|
private Button buttonAdd;
|
|
private Button buttonUpd;
|
|
}
|
|
}
|