62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
namespace SewingDressesView
|
||
{
|
||
partial class MailForm
|
||
{
|
||
/// <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();
|
||
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// dataGridView
|
||
//
|
||
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
dataGridView.Location = new Point(12, 12);
|
||
dataGridView.Name = "dataGridView";
|
||
dataGridView.RowHeadersWidth = 51;
|
||
dataGridView.RowTemplate.Height = 29;
|
||
dataGridView.Size = new Size(776, 426);
|
||
dataGridView.TabIndex = 0;
|
||
//
|
||
// MailForm
|
||
//
|
||
AutoScaleDimensions = new SizeF(8F, 20F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(800, 450);
|
||
Controls.Add(dataGridView);
|
||
Name = "MailForm";
|
||
Text = "Формочка с письмами";
|
||
Load += FormEmails_Load;
|
||
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private DataGridView dataGridView;
|
||
}
|
||
} |