112 lines
4.6 KiB
C#
112 lines
4.6 KiB
C#
namespace FurnitureAssemblyView
|
|
{
|
|
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()
|
|
{
|
|
this.buttonOpen = new System.Windows.Forms.Button();
|
|
this.buttonNext = new System.Windows.Forms.Button();
|
|
this.buttonPrev = new System.Windows.Forms.Button();
|
|
|
|
this.dataGridViewMail = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewMail)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonOpen
|
|
//
|
|
this.buttonOpen.Location = new System.Drawing.Point(889, 559);
|
|
this.buttonOpen.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.buttonOpen.Name = "buttonOpen";
|
|
this.buttonOpen.Size = new System.Drawing.Size(133, 44);
|
|
this.buttonOpen.TabIndex = 7;
|
|
this.buttonOpen.Text = "Открыть";
|
|
this.buttonOpen.UseVisualStyleBackColor = true;
|
|
this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click);
|
|
//
|
|
// buttonNext
|
|
//
|
|
this.buttonNext.Location = new System.Drawing.Point(445, 559);
|
|
this.buttonNext.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.buttonNext.Name = "buttonNext";
|
|
this.buttonNext.Size = new System.Drawing.Size(172, 38);
|
|
this.buttonNext.TabIndex = 6;
|
|
this.buttonNext.Text = "Следующая";
|
|
this.buttonNext.UseVisualStyleBackColor = true;
|
|
this.buttonNext.Click += new System.EventHandler(this.buttonNext_Click);
|
|
//
|
|
// buttonPrev
|
|
//
|
|
this.buttonPrev.Location = new System.Drawing.Point(93, 559);
|
|
this.buttonPrev.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.buttonPrev.Name = "buttonPrev";
|
|
this.buttonPrev.Size = new System.Drawing.Size(146, 38);
|
|
this.buttonPrev.TabIndex = 5;
|
|
this.buttonPrev.Text = "Предыдущая";
|
|
this.buttonPrev.UseVisualStyleBackColor = true;
|
|
this.buttonPrev.Click += new System.EventHandler(this.buttonPrev_Click);
|
|
//
|
|
// dataGridViewMail
|
|
//
|
|
this.dataGridViewMail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewMail.Location = new System.Drawing.Point(13, 5);
|
|
|
|
this.dataGridViewMail.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.dataGridViewMail.Name = "dataGridViewMail";
|
|
this.dataGridViewMail.RowHeadersWidth = 62;
|
|
this.dataGridViewMail.RowTemplate.Height = 25;
|
|
|
|
this.dataGridViewMail.Size = new System.Drawing.Size(965, 592);
|
|
this.dataGridViewMail.TabIndex = 1;
|
|
//
|
|
// MailForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
this.ClientSize = new System.Drawing.Size(965, 593);
|
|
this.Controls.Add(this.buttonOpen);
|
|
this.Controls.Add(this.buttonNext);
|
|
this.Controls.Add(this.buttonPrev);
|
|
|
|
this.Controls.Add(this.dataGridViewMail);
|
|
this.Name = "MailForm";
|
|
this.Text = "Письма";
|
|
this.Load += new System.EventHandler(this.MailForm_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewMail)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonOpen;
|
|
private Button buttonNext;
|
|
private Button buttonPrev;
|
|
|
|
private DataGridView dataGridViewMail;
|
|
}
|
|
} |