149 lines
4.4 KiB
C#
149 lines
4.4 KiB
C#
namespace IceCreamShopView
|
|
{
|
|
partial class FormReplyMail
|
|
{
|
|
/// <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()
|
|
{
|
|
textBoxReply = new TextBox();
|
|
textBoxMainText = new TextBox();
|
|
textBoxTitle = new TextBox();
|
|
labelReply = new Label();
|
|
labelMainText = new Label();
|
|
labelTitle = new Label();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxReply
|
|
//
|
|
textBoxReply.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
textBoxReply.Location = new Point(137, 114);
|
|
textBoxReply.Multiline = true;
|
|
textBoxReply.Name = "textBoxReply";
|
|
textBoxReply.Size = new Size(494, 182);
|
|
textBoxReply.TabIndex = 15;
|
|
//
|
|
// textBoxMainText
|
|
//
|
|
textBoxMainText.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
textBoxMainText.Location = new Point(137, 32);
|
|
textBoxMainText.Multiline = true;
|
|
textBoxMainText.Name = "textBoxMainText";
|
|
textBoxMainText.ReadOnly = true;
|
|
textBoxMainText.Size = new Size(494, 76);
|
|
textBoxMainText.TabIndex = 14;
|
|
//
|
|
// textBoxTitle
|
|
//
|
|
textBoxTitle.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
textBoxTitle.Location = new Point(137, 2);
|
|
textBoxTitle.Name = "textBoxTitle";
|
|
textBoxTitle.ReadOnly = true;
|
|
textBoxTitle.Size = new Size(494, 23);
|
|
textBoxTitle.TabIndex = 13;
|
|
//
|
|
// labelReply
|
|
//
|
|
labelReply.Location = new Point(14, 114);
|
|
labelReply.Name = "labelReply";
|
|
labelReply.Size = new Size(117, 31);
|
|
labelReply.TabIndex = 12;
|
|
labelReply.Text = "Ответ на письмо:";
|
|
labelReply.TextAlign = ContentAlignment.TopRight;
|
|
//
|
|
// labelMainText
|
|
//
|
|
labelMainText.Location = new Point(14, 35);
|
|
labelMainText.Name = "labelMainText";
|
|
labelMainText.Size = new Size(117, 23);
|
|
labelMainText.TabIndex = 11;
|
|
labelMainText.Text = "Текст письма:";
|
|
labelMainText.TextAlign = ContentAlignment.TopRight;
|
|
//
|
|
// labelTitle
|
|
//
|
|
labelTitle.Location = new Point(14, 6);
|
|
labelTitle.Name = "labelTitle";
|
|
labelTitle.Size = new Size(117, 23);
|
|
labelTitle.TabIndex = 10;
|
|
labelTitle.Text = "Заголовок письма:";
|
|
labelTitle.TextAlign = ContentAlignment.TopRight;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonCancel.Location = new Point(175, 302);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(117, 30);
|
|
buttonCancel.TabIndex = 9;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonSave.Location = new Point(298, 302);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(117, 30);
|
|
buttonSave.TabIndex = 8;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// FormReplyMail
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(636, 344);
|
|
Controls.Add(textBoxReply);
|
|
Controls.Add(textBoxMainText);
|
|
Controls.Add(textBoxTitle);
|
|
Controls.Add(labelReply);
|
|
Controls.Add(labelMainText);
|
|
Controls.Add(labelTitle);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Name = "FormReplyMail";
|
|
Text = "Ответ на письмо";
|
|
Load += FormReplyMail_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxReply;
|
|
private TextBox textBoxMainText;
|
|
private TextBox textBoxTitle;
|
|
private Label labelReply;
|
|
private Label labelMainText;
|
|
private Label labelTitle;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |