65 lines
1.8 KiB
C#
65 lines
1.8 KiB
C#
namespace Library
|
|
{
|
|
partial class FormAuthor
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridView1 = new DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView1.Dock = DockStyle.Fill;
|
|
dataGridView1.Location = new Point(0, 0);
|
|
dataGridView1.Name = "dataGridView1";
|
|
dataGridView1.RowHeadersWidth = 51;
|
|
dataGridView1.RowTemplate.Height = 29;
|
|
dataGridView1.Size = new Size(704, 411);
|
|
dataGridView1.TabIndex = 0;
|
|
dataGridView1.CellEndEdit += dataGridView_CellEndEdit;
|
|
dataGridView1.KeyDown += dataGridView_KeyDown;
|
|
//
|
|
// FormAuthor
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(704, 411);
|
|
Controls.Add(dataGridView1);
|
|
Name = "FormAuthor";
|
|
Text = "Справочник авторов";
|
|
Load += FormAuthor_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView1;
|
|
}
|
|
} |