2023-05-02 17:43:48 +04:00

119 lines
4.4 KiB
C#

namespace SushiBarView
{
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.textBoxHead = new System.Windows.Forms.TextBox();
this.textBoxBody = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.labelHead = new System.Windows.Forms.Label();
this.labelAnswer = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// textBoxHead
//
this.textBoxHead.Location = new System.Drawing.Point(82, 7);
this.textBoxHead.Name = "textBoxHead";
this.textBoxHead.Size = new System.Drawing.Size(400, 23);
this.textBoxHead.TabIndex = 0;
//
// textBoxBody
//
this.textBoxBody.Location = new System.Drawing.Point(82, 36);
this.textBoxBody.Name = "textBoxBody";
this.textBoxBody.Size = new System.Drawing.Size(400, 23);
this.textBoxBody.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(326, 86);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Сохранить";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.ButtonSave_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(407, 86);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 3;
this.button2.Text = "Отмена";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// labelHead
//
this.labelHead.AutoSize = true;
this.labelHead.Location = new System.Drawing.Point(12, 10);
this.labelHead.Name = "labelHead";
this.labelHead.Size = new System.Drawing.Size(65, 15);
this.labelHead.TabIndex = 4;
this.labelHead.Text = "Заголовок";
//
// labelAnswer
//
this.labelAnswer.AutoSize = true;
this.labelAnswer.Location = new System.Drawing.Point(12, 39);
this.labelAnswer.Name = "labelAnswer";
this.labelAnswer.Size = new System.Drawing.Size(38, 15);
this.labelAnswer.TabIndex = 5;
this.labelAnswer.Text = "Ответ";
//
// FormMail
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(494, 121);
this.Controls.Add(this.labelAnswer);
this.Controls.Add(this.labelHead);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBoxBody);
this.Controls.Add(this.textBoxHead);
this.Name = "FormMail";
this.Text = "Письмо";
this.Load += new System.EventHandler(this.FormMail_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox textBoxHead;
private TextBox textBoxBody;
private Button button1;
private Button button2;
private Label labelHead;
private Label labelAnswer;
}
}