62 lines
2.4 KiB
C#
62 lines
2.4 KiB
C#
namespace VisualComponentsLib
|
||
{
|
||
partial class MyDataGridView
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
dataGridView = new DataGridView();
|
||
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// dataGridView
|
||
//
|
||
dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
||
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
dataGridView.Location = new Point(3, 3);
|
||
dataGridView.Name = "dataGridView";
|
||
dataGridView.RowTemplate.Height = 25;
|
||
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
||
dataGridView.Size = new Size(290, 177);
|
||
dataGridView.TabIndex = 0;
|
||
//
|
||
// MyDataGridView
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
Controls.Add(dataGridView);
|
||
Name = "MyDataGridView";
|
||
Size = new Size(296, 183);
|
||
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private DataGridView dataGridView;
|
||
}
|
||
}
|