152 lines
5.0 KiB
C#
152 lines
5.0 KiB
C#
namespace PlumbingRepairView
|
|
{
|
|
partial class FormMail
|
|
{
|
|
/// <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.buttonSend = new System.Windows.Forms.Button();
|
|
this.labelReply = new System.Windows.Forms.Label();
|
|
this.textBoxReply = new System.Windows.Forms.TextBox();
|
|
this.textBoxBody = new System.Windows.Forms.TextBox();
|
|
this.labelBody = new System.Windows.Forms.Label();
|
|
this.textBoxSubject = new System.Windows.Forms.TextBox();
|
|
this.labelSubject = new System.Windows.Forms.Label();
|
|
this.textBoxSender = new System.Windows.Forms.TextBox();
|
|
this.labelSender = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonSend
|
|
//
|
|
this.buttonSend.Location = new System.Drawing.Point(423, 409);
|
|
this.buttonSend.Name = "buttonSend";
|
|
this.buttonSend.Size = new System.Drawing.Size(358, 34);
|
|
this.buttonSend.TabIndex = 17;
|
|
this.buttonSend.Text = "Отправить";
|
|
this.buttonSend.UseVisualStyleBackColor = true;
|
|
this.buttonSend.Click += new System.EventHandler(this.ButtonSend_Click);
|
|
//
|
|
// labelReply
|
|
//
|
|
this.labelReply.AutoSize = true;
|
|
this.labelReply.Location = new System.Drawing.Point(423, 14);
|
|
this.labelReply.Name = "labelReply";
|
|
this.labelReply.Size = new System.Drawing.Size(112, 25);
|
|
this.labelReply.TabIndex = 16;
|
|
this.labelReply.Text = "Текст ответа";
|
|
//
|
|
// textBoxReply
|
|
//
|
|
this.textBoxReply.Location = new System.Drawing.Point(423, 42);
|
|
this.textBoxReply.Multiline = true;
|
|
this.textBoxReply.Name = "textBoxReply";
|
|
this.textBoxReply.Size = new System.Drawing.Size(358, 361);
|
|
this.textBoxReply.TabIndex = 15;
|
|
//
|
|
// textBoxBody
|
|
//
|
|
this.textBoxBody.Location = new System.Drawing.Point(5, 200);
|
|
this.textBoxBody.Multiline = true;
|
|
this.textBoxBody.Name = "textBoxBody";
|
|
this.textBoxBody.Size = new System.Drawing.Size(347, 243);
|
|
this.textBoxBody.TabIndex = 14;
|
|
//
|
|
// labelBody
|
|
//
|
|
this.labelBody.AutoSize = true;
|
|
this.labelBody.Location = new System.Drawing.Point(5, 172);
|
|
this.labelBody.Name = "labelBody";
|
|
this.labelBody.Size = new System.Drawing.Size(152, 25);
|
|
this.labelBody.TabIndex = 13;
|
|
this.labelBody.Text = "Текст сообщения";
|
|
//
|
|
// textBoxSubject
|
|
//
|
|
this.textBoxSubject.Location = new System.Drawing.Point(5, 119);
|
|
this.textBoxSubject.Name = "textBoxSubject";
|
|
this.textBoxSubject.Size = new System.Drawing.Size(347, 31);
|
|
this.textBoxSubject.TabIndex = 12;
|
|
//
|
|
// labelSubject
|
|
//
|
|
this.labelSubject.AutoSize = true;
|
|
this.labelSubject.Location = new System.Drawing.Point(5, 91);
|
|
this.labelSubject.Name = "labelSubject";
|
|
this.labelSubject.Size = new System.Drawing.Size(99, 25);
|
|
this.labelSubject.TabIndex = 11;
|
|
this.labelSubject.Text = "Заголовок";
|
|
//
|
|
// textBoxSender
|
|
//
|
|
this.textBoxSender.Location = new System.Drawing.Point(5, 42);
|
|
this.textBoxSender.Name = "textBoxSender";
|
|
this.textBoxSender.Size = new System.Drawing.Size(347, 31);
|
|
this.textBoxSender.TabIndex = 10;
|
|
//
|
|
// labelSender
|
|
//
|
|
this.labelSender.AutoSize = true;
|
|
this.labelSender.Location = new System.Drawing.Point(5, 14);
|
|
this.labelSender.Name = "labelSender";
|
|
this.labelSender.Size = new System.Drawing.Size(117, 25);
|
|
this.labelSender.TabIndex = 9;
|
|
this.labelSender.Text = "Отправитель";
|
|
//
|
|
// FormMail
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(785, 455);
|
|
this.Controls.Add(this.buttonSend);
|
|
this.Controls.Add(this.labelReply);
|
|
this.Controls.Add(this.textBoxReply);
|
|
this.Controls.Add(this.textBoxBody);
|
|
this.Controls.Add(this.labelBody);
|
|
this.Controls.Add(this.textBoxSubject);
|
|
this.Controls.Add(this.labelSubject);
|
|
this.Controls.Add(this.textBoxSender);
|
|
this.Controls.Add(this.labelSender);
|
|
this.Name = "FormMail";
|
|
this.Text = "Письмо";
|
|
this.Load += new System.EventHandler(this.FormMessage_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSend;
|
|
private Label labelReply;
|
|
private TextBox textBoxReply;
|
|
private TextBox textBoxBody;
|
|
private Label labelBody;
|
|
private TextBox textBoxSubject;
|
|
private Label labelSubject;
|
|
private TextBox textBoxSender;
|
|
private Label labelSender;
|
|
}
|
|
} |