ShareX/UploadersLib/Forms/EmailForm.Designer.cs

144 lines
5.8 KiB
C#

namespace UploadersLib.GUI
{
partial class EmailForm
{
/// <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.lblToEmail = new System.Windows.Forms.Label();
this.txtToEmail = new System.Windows.Forms.TextBox();
this.lblSubject = new System.Windows.Forms.Label();
this.txtSubject = new System.Windows.Forms.TextBox();
this.lblMessage = new System.Windows.Forms.Label();
this.txtMessage = new System.Windows.Forms.TextBox();
this.btnSend = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblToEmail
//
this.lblToEmail.AutoSize = true;
this.lblToEmail.Location = new System.Drawing.Point(16, 16);
this.lblToEmail.Name = "lblToEmail";
this.lblToEmail.Size = new System.Drawing.Size(51, 13);
this.lblToEmail.TabIndex = 0;
this.lblToEmail.Text = "To Email:";
//
// txtToEmail
//
this.txtToEmail.Location = new System.Drawing.Point(72, 12);
this.txtToEmail.Name = "txtToEmail";
this.txtToEmail.Size = new System.Drawing.Size(216, 20);
this.txtToEmail.TabIndex = 1;
//
// lblSubject
//
this.lblSubject.AutoSize = true;
this.lblSubject.Location = new System.Drawing.Point(16, 40);
this.lblSubject.Name = "lblSubject";
this.lblSubject.Size = new System.Drawing.Size(46, 13);
this.lblSubject.TabIndex = 2;
this.lblSubject.Text = "Subject:";
//
// txtSubject
//
this.txtSubject.Location = new System.Drawing.Point(72, 36);
this.txtSubject.Name = "txtSubject";
this.txtSubject.Size = new System.Drawing.Size(216, 20);
this.txtSubject.TabIndex = 3;
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Location = new System.Drawing.Point(16, 64);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(53, 13);
this.lblMessage.TabIndex = 4;
this.lblMessage.Text = "Message:";
//
// txtMessage
//
this.txtMessage.Location = new System.Drawing.Point(16, 80);
this.txtMessage.Multiline = true;
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(272, 144);
this.txtMessage.TabIndex = 5;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(208, 232);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 7;
this.btnSend.Text = "Send";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(128, 232);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 6;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// EmailForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(301, 265);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.txtMessage);
this.Controls.Add(this.lblMessage);
this.Controls.Add(this.txtSubject);
this.Controls.Add(this.lblSubject);
this.Controls.Add(this.txtToEmail);
this.Controls.Add(this.lblToEmail);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "EmailForm";
this.Text = "Send Email";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblToEmail;
private System.Windows.Forms.TextBox txtToEmail;
private System.Windows.Forms.Label lblSubject;
private System.Windows.Forms.TextBox txtSubject;
private System.Windows.Forms.Label lblMessage;
private System.Windows.Forms.TextBox txtMessage;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.Button btnCancel;
}
}