ShareX/ShareX.UploadersLib/Forms/EmailForm.Designer.cs
2023-06-05 01:17:51 +03:00

119 lines
4.6 KiB
C#

namespace ShareX.UploadersLib
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EmailForm));
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
//
resources.ApplyResources(this.lblToEmail, "lblToEmail");
this.lblToEmail.Name = "lblToEmail";
//
// txtToEmail
//
resources.ApplyResources(this.txtToEmail, "txtToEmail");
this.txtToEmail.Name = "txtToEmail";
//
// lblSubject
//
resources.ApplyResources(this.lblSubject, "lblSubject");
this.lblSubject.Name = "lblSubject";
//
// txtSubject
//
resources.ApplyResources(this.txtSubject, "txtSubject");
this.txtSubject.Name = "txtSubject";
//
// lblMessage
//
resources.ApplyResources(this.lblMessage, "lblMessage");
this.lblMessage.Name = "lblMessage";
//
// txtMessage
//
resources.ApplyResources(this.txtMessage, "txtMessage");
this.txtMessage.Name = "txtMessage";
//
// btnSend
//
resources.ApplyResources(this.btnSend, "btnSend");
this.btnSend.Name = "btnSend";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// btnCancel
//
resources.ApplyResources(this.btnCancel, "btnCancel");
this.btnCancel.Name = "btnCancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// EmailForm
//
this.AcceptButton = this.btnSend;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.SystemColors.Window;
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.Name = "EmailForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Shown += new System.EventHandler(this.EmailForm_Shown);
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;
}
}