?? form1.designer.cs
字號(hào):
?namespace e4_9_2B
{
partial class Form1
{
/// <summary>
/// 必需的設(shè)計(jì)器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.新頁(yè)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.打開(kāi)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.另存為T(mén)oolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.文件ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(292, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// 文件ToolStripMenuItem
//
this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.新頁(yè)ToolStripMenuItem,
this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem,
this.打開(kāi)ToolStripMenuItem,
this.另存為T(mén)oolStripMenuItem});
this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
this.文件ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.文件ToolStripMenuItem.Text = "文件";
//
// 新頁(yè)ToolStripMenuItem
//
this.新頁(yè)ToolStripMenuItem.Name = "新頁(yè)ToolStripMenuItem";
this.新頁(yè)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.新頁(yè)ToolStripMenuItem.Text = "新頁(yè)";
this.新頁(yè)ToolStripMenuItem.Click += new System.EventHandler(this.新頁(yè)ToolStripMenuItem_Click);
//
// 關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem
//
this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem.Name = "關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem";
this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem.Text = "關(guān)閉當(dāng)前頁(yè)";
this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem.Click += new System.EventHandler(this.關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem_Click);
//
// 打開(kāi)ToolStripMenuItem
//
this.打開(kāi)ToolStripMenuItem.Name = "打開(kāi)ToolStripMenuItem";
this.打開(kāi)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.打開(kāi)ToolStripMenuItem.Text = "打開(kāi)";
this.打開(kāi)ToolStripMenuItem.Click += new System.EventHandler(this.打開(kāi)ToolStripMenuItem_Click);
//
// 另存為T(mén)oolStripMenuItem
//
this.另存為T(mén)oolStripMenuItem.Name = "另存為T(mén)oolStripMenuItem";
this.另存為T(mén)oolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.另存為T(mén)oolStripMenuItem.Text = "另存為";
this.另存為T(mén)oolStripMenuItem.Click += new System.EventHandler(this.另存為T(mén)oolStripMenuItem_Click);
//
// tabControl1
//
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 24);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(292, 249);
this.tabControl1.TabIndex = 1;
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.menuStrip1);
this.Name = "Form1";
this.Text = "Form1";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 新頁(yè)ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 關(guān)閉當(dāng)前頁(yè)ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 打開(kāi)ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 另存為T(mén)oolStripMenuItem;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -