📄 form1.designer.cs
字号:
namespace EmailApp
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.userlabel = new System.Windows.Forms.Label();
this.pop3Box = new System.Windows.Forms.TextBox();
this.nameBox = new System.Windows.Forms.TextBox();
this.smtpBox = new System.Windows.Forms.TextBox();
this.passBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.SendMailBtn = new System.Windows.Forms.Button();
this.ReceMailBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// userlabel
//
this.userlabel.AutoSize = true;
this.userlabel.Location = new System.Drawing.Point(296, 315);
this.userlabel.Name = "userlabel";
this.userlabel.Size = new System.Drawing.Size(0, 12);
this.userlabel.TabIndex = 2;
//
// pop3Box
//
this.pop3Box.Location = new System.Drawing.Point(12, 37);
this.pop3Box.Name = "pop3Box";
this.pop3Box.Size = new System.Drawing.Size(187, 21);
this.pop3Box.TabIndex = 3;
this.pop3Box.TextChanged += new System.EventHandler(this.pop3Box_TextChanged);
//
// nameBox
//
this.nameBox.Location = new System.Drawing.Point(265, 37);
this.nameBox.Name = "nameBox";
this.nameBox.Size = new System.Drawing.Size(185, 21);
this.nameBox.TabIndex = 4;
this.nameBox.TextChanged += new System.EventHandler(this.userBox_TextChanged);
//
// smtpBox
//
this.smtpBox.Location = new System.Drawing.Point(12, 111);
this.smtpBox.Name = "smtpBox";
this.smtpBox.Size = new System.Drawing.Size(187, 21);
this.smtpBox.TabIndex = 5;
this.smtpBox.TextChanged += new System.EventHandler(this.smtpBox_TextChanged);
//
// passBox
//
this.passBox.Location = new System.Drawing.Point(265, 111);
this.passBox.Name = "passBox";
this.passBox.PasswordChar = '*';
this.passBox.Size = new System.Drawing.Size(185, 21);
this.passBox.TabIndex = 6;
this.passBox.TextChanged += new System.EventHandler(this.passBox_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(125, 12);
this.label1.TabIndex = 7;
this.label1.Text = "接收邮件服务器(POP3)";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(263, 22);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(77, 12);
this.label2.TabIndex = 8;
this.label2.Text = "POP3邮箱帐号";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 96);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(125, 12);
this.label3.TabIndex = 9;
this.label3.Text = "发送邮件服务器(SMTP)";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(263, 96);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(29, 12);
this.label4.TabIndex = 10;
this.label4.Text = "密码";
//
// SendMailBtn
//
this.SendMailBtn.Location = new System.Drawing.Point(103, 196);
this.SendMailBtn.Name = "SendMailBtn";
this.SendMailBtn.Size = new System.Drawing.Size(75, 23);
this.SendMailBtn.TabIndex = 11;
this.SendMailBtn.Text = "发送邮件";
this.SendMailBtn.UseVisualStyleBackColor = true;
this.SendMailBtn.Click += new System.EventHandler(this.SendMailBtn_Click);
//
// ReceMailBtn
//
this.ReceMailBtn.Location = new System.Drawing.Point(265, 196);
this.ReceMailBtn.Name = "ReceMailBtn";
this.ReceMailBtn.Size = new System.Drawing.Size(75, 23);
this.ReceMailBtn.TabIndex = 12;
this.ReceMailBtn.Text = "接收邮件";
this.ReceMailBtn.UseVisualStyleBackColor = true;
this.ReceMailBtn.Click += new System.EventHandler(this.ReceMailBtn_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(476, 249);
this.Controls.Add(this.ReceMailBtn);
this.Controls.Add(this.SendMailBtn);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.passBox);
this.Controls.Add(this.smtpBox);
this.Controls.Add(this.nameBox);
this.Controls.Add(this.pop3Box);
this.Controls.Add(this.userlabel);
this.Name = "Form1";
this.Text = "Form1";
this.Activated += new System.EventHandler(this.Form1_Activated);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label userlabel;
private System.Windows.Forms.TextBox pop3Box;
private System.Windows.Forms.TextBox nameBox;
private System.Windows.Forms.TextBox smtpBox;
private System.Windows.Forms.TextBox passBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button SendMailBtn;
private System.Windows.Forms.Button ReceMailBtn;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -