148 lines
4.3 KiB
C#
148 lines
4.3 KiB
C#
namespace ProjectFlowerShop
|
|
{
|
|
partial class FormViewMail
|
|
{
|
|
/// <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()
|
|
{
|
|
panel1 = new Panel();
|
|
dataGridView = new DataGridView();
|
|
buttonOpen = new Button();
|
|
numericUpDownPage = new NumericUpDown();
|
|
buttonPreveous = new Button();
|
|
buttonNext = new Button();
|
|
pageTextBox = new TextBox();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPage).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(dataGridView);
|
|
panel1.Location = new Point(3, 1);
|
|
panel1.Margin = new Padding(3, 4, 3, 4);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(795, 431);
|
|
panel1.TabIndex = 0;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Dock = DockStyle.Fill;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.Size = new Size(795, 431);
|
|
dataGridView.TabIndex = 2;
|
|
//
|
|
// buttonOpen
|
|
//
|
|
buttonOpen.Location = new Point(806, 13);
|
|
buttonOpen.Margin = new Padding(3, 4, 3, 4);
|
|
buttonOpen.Name = "buttonOpen";
|
|
buttonOpen.Size = new Size(121, 31);
|
|
buttonOpen.TabIndex = 1;
|
|
buttonOpen.Text = "Прочитать";
|
|
buttonOpen.UseVisualStyleBackColor = true;
|
|
buttonOpen.Click += buttonOpen_Click;
|
|
//
|
|
// numericUpDownPage
|
|
//
|
|
numericUpDownPage.Location = new Point(806, 51);
|
|
numericUpDownPage.Name = "numericUpDownPage";
|
|
numericUpDownPage.Size = new Size(121, 27);
|
|
numericUpDownPage.TabIndex = 4;
|
|
numericUpDownPage.ValueChanged += numericUpDownPage_ValueChanged;
|
|
//
|
|
// buttonPreveous
|
|
//
|
|
buttonPreveous.Location = new Point(804, 84);
|
|
buttonPreveous.Name = "buttonPreveous";
|
|
buttonPreveous.Size = new Size(40, 33);
|
|
buttonPreveous.TabIndex = 5;
|
|
buttonPreveous.Text = "<-";
|
|
buttonPreveous.UseVisualStyleBackColor = true;
|
|
buttonPreveous.Click += buttonPreveous_Click;
|
|
//
|
|
// buttonNext
|
|
//
|
|
buttonNext.Location = new Point(883, 84);
|
|
buttonNext.Name = "buttonNext";
|
|
buttonNext.Size = new Size(40, 33);
|
|
buttonNext.TabIndex = 6;
|
|
buttonNext.Text = "->";
|
|
buttonNext.UseVisualStyleBackColor = true;
|
|
buttonNext.Click += buttonNext_Click;
|
|
//
|
|
// pageTextBox
|
|
//
|
|
pageTextBox.Enabled = false;
|
|
pageTextBox.Location = new Point(850, 90);
|
|
pageTextBox.Margin = new Padding(3, 4, 3, 4);
|
|
pageTextBox.Name = "pageTextBox";
|
|
pageTextBox.ReadOnly = true;
|
|
pageTextBox.Size = new Size(27, 27);
|
|
pageTextBox.TabIndex = 7;
|
|
pageTextBox.Text = "0";
|
|
//
|
|
// FormViewMail
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(934, 428);
|
|
Controls.Add(pageTextBox);
|
|
Controls.Add(buttonNext);
|
|
Controls.Add(buttonPreveous);
|
|
Controls.Add(numericUpDownPage);
|
|
Controls.Add(buttonOpen);
|
|
Controls.Add(panel1);
|
|
Name = "FormViewMail";
|
|
Text = "Письма";
|
|
Load += ViewMailForm_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPage).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private DataGridView dataGridView;
|
|
private Button buttonOpen;
|
|
private NumericUpDown numericUpDownPage;
|
|
private Button buttonPreveous;
|
|
private Button buttonNext;
|
|
private TextBox pageTextBox;
|
|
|
|
}
|
|
} |