118 lines
4.0 KiB
C#
118 lines
4.0 KiB
C#
|
namespace AircraftPlantView
|
|||
|
{
|
|||
|
partial class FormMessage
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
labelSubject = new Label();
|
|||
|
textBoxSubject = new TextBox();
|
|||
|
textBoxBody = new TextBox();
|
|||
|
labelBody = new Label();
|
|||
|
buttonSend = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelSubject
|
|||
|
//
|
|||
|
labelSubject.AutoSize = true;
|
|||
|
labelSubject.Location = new Point(12, 15);
|
|||
|
labelSubject.Name = "labelSubject";
|
|||
|
labelSubject.Size = new Size(68, 15);
|
|||
|
labelSubject.TabIndex = 0;
|
|||
|
labelSubject.Text = "Заголовок:";
|
|||
|
//
|
|||
|
// textBoxSubject
|
|||
|
//
|
|||
|
textBoxSubject.Location = new Point(90, 12);
|
|||
|
textBoxSubject.Name = "textBoxSubject";
|
|||
|
textBoxSubject.Size = new Size(282, 23);
|
|||
|
textBoxSubject.TabIndex = 1;
|
|||
|
//
|
|||
|
// textBoxBody
|
|||
|
//
|
|||
|
textBoxBody.Location = new Point(90, 41);
|
|||
|
textBoxBody.Name = "textBoxBody";
|
|||
|
textBoxBody.Size = new Size(282, 23);
|
|||
|
textBoxBody.TabIndex = 2;
|
|||
|
//
|
|||
|
// labelBody
|
|||
|
//
|
|||
|
labelBody.AutoSize = true;
|
|||
|
labelBody.Location = new Point(12, 44);
|
|||
|
labelBody.Name = "labelBody";
|
|||
|
labelBody.Size = new Size(39, 15);
|
|||
|
labelBody.TabIndex = 3;
|
|||
|
labelBody.Text = "Текст:";
|
|||
|
//
|
|||
|
// buttonSend
|
|||
|
//
|
|||
|
buttonSend.Location = new Point(216, 76);
|
|||
|
buttonSend.Name = "buttonSend";
|
|||
|
buttonSend.Size = new Size(75, 23);
|
|||
|
buttonSend.TabIndex = 7;
|
|||
|
buttonSend.Text = "Отправить";
|
|||
|
buttonSend.UseVisualStyleBackColor = true;
|
|||
|
buttonSend.Click += buttonSend_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(297, 76);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(75, 23);
|
|||
|
buttonCancel.TabIndex = 6;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// FormMessage
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(384, 111);
|
|||
|
Controls.Add(buttonSend);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(labelBody);
|
|||
|
Controls.Add(textBoxBody);
|
|||
|
Controls.Add(textBoxSubject);
|
|||
|
Controls.Add(labelSubject);
|
|||
|
Name = "FormMessage";
|
|||
|
Text = "Письмо";
|
|||
|
Load += FormMessage_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelSubject;
|
|||
|
private TextBox textBoxSubject;
|
|||
|
private TextBox textBoxBody;
|
|||
|
private Label labelBody;
|
|||
|
private Button buttonSend;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|