?? form1.designer.cs
字號(hào):
?namespace devApp
{
partial class Form1
{
/// <summary>
/// 必需的設(shè)計(jì)器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應(yīng)釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設(shè)計(jì)器生成的代碼
/// <summary>
/// 設(shè)計(jì)器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內(nèi)容。
/// </summary>
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.txtSend = new System.Windows.Forms.TextBox();
this.txtTitle = new System.Windows.Forms.TextBox();
this.txtContent = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.txtFile = new System.Windows.Forms.TextBox();
this.button2 = new System.Windows.Forms.Button();
this.txtCc = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(91, 226);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(58, 28);
this.button1.TabIndex = 0;
this.button1.Text = "發(fā)送";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(12, 4);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(48, 20);
this.label1.Text = "收件人";
//
// label2
//
this.label2.Location = new System.Drawing.Point(12, 55);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(48, 20);
this.label2.Text = "主題";
//
// label3
//
this.label3.Location = new System.Drawing.Point(12, 103);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(48, 20);
this.label3.Text = "內(nèi)容";
//
// txtSend
//
this.txtSend.Location = new System.Drawing.Point(55, 3);
this.txtSend.Name = "txtSend";
this.txtSend.Size = new System.Drawing.Size(173, 21);
this.txtSend.TabIndex = 6;
this.txtSend.Text = "net5188@163.com";
//
// txtTitle
//
this.txtTitle.Location = new System.Drawing.Point(55, 51);
this.txtTitle.Name = "txtTitle";
this.txtTitle.Size = new System.Drawing.Size(173, 21);
this.txtTitle.TabIndex = 7;
this.txtTitle.Text = "測試的主題";
//
// txtContent
//
this.txtContent.Location = new System.Drawing.Point(12, 126);
this.txtContent.Multiline = true;
this.txtContent.Name = "txtContent";
this.txtContent.Size = new System.Drawing.Size(216, 94);
this.txtContent.TabIndex = 8;
this.txtContent.Text = "測試的內(nèi)容";
//
// label4
//
this.label4.Location = new System.Drawing.Point(12, 79);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(48, 20);
this.label4.Text = "附件";
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// txtFile
//
this.txtFile.Location = new System.Drawing.Point(55, 75);
this.txtFile.Name = "txtFile";
this.txtFile.Size = new System.Drawing.Size(131, 21);
this.txtFile.TabIndex = 11;
//
// button2
//
this.button2.Location = new System.Drawing.Point(192, 75);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(36, 21);
this.button2.TabIndex = 12;
this.button2.Text = "瀏覽";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// txtCc
//
this.txtCc.Location = new System.Drawing.Point(55, 27);
this.txtCc.Name = "txtCc";
this.txtCc.Size = new System.Drawing.Size(173, 21);
this.txtCc.TabIndex = 14;
//
// label5
//
this.label5.Location = new System.Drawing.Point(12, 29);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(48, 20);
this.label5.Text = "抄送";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.txtCc);
this.Controls.Add(this.label5);
this.Controls.Add(this.button2);
this.Controls.Add(this.txtFile);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtContent);
this.Controls.Add(this.txtTitle);
this.Controls.Add(this.txtSend);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "發(fā)送郵件";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtSend;
private System.Windows.Forms.TextBox txtTitle;
private System.Windows.Forms.TextBox txtContent;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.TextBox txtFile;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TextBox txtCc;
private System.Windows.Forms.Label label5;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -