?? ch9_demoform003.designer.cs
字號:
// MenuStrip1
//
this.MenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiWordFile});
this.MenuStrip1.Location = new System.Drawing.Point(0, 48);
this.MenuStrip1.Name = "MenuStrip1";
this.MenuStrip1.Padding = new System.Windows.Forms.Padding(4, 2, 0, 2);
this.MenuStrip1.Size = new System.Drawing.Size(228, 24);
this.MenuStrip1.TabIndex = 7;
this.MenuStrip1.Text = "MenuStrip1";
//
// tsmiWordFile
//
this.tsmiWordFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.建立Word文件ToolStripMenuItem,
this.開啟Word檔案ToolStripMenuItem,
this.預覽列印Word文件ToolStripMenuItem,
this.結束XToolStripMenuItem});
this.tsmiWordFile.Name = "tsmiWordFile";
this.tsmiWordFile.Size = new System.Drawing.Size(95, 20);
this.tsmiWordFile.Text = "&Word 文件處理";
//
// 建立Word文件ToolStripMenuItem
//
this.建立Word文件ToolStripMenuItem.Name = "建立Word文件ToolStripMenuItem";
this.建立Word文件ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
this.建立Word文件ToolStripMenuItem.Text = "新建 Word 文件";
//
// 開啟Word檔案ToolStripMenuItem
//
this.開啟Word檔案ToolStripMenuItem.Name = "開啟Word檔案ToolStripMenuItem";
this.開啟Word檔案ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
this.開啟Word檔案ToolStripMenuItem.Text = "打開 Word 文件";
//
// 預覽列印Word文件ToolStripMenuItem
//
this.預覽列印Word文件ToolStripMenuItem.Name = "預覽列印Word文件ToolStripMenuItem";
this.預覽列印Word文件ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
this.預覽列印Word文件ToolStripMenuItem.Text = "打印預覽 Word 文件";
//
// 結束XToolStripMenuItem
//
this.結束XToolStripMenuItem.Name = "結束XToolStripMenuItem";
this.結束XToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
this.結束XToolStripMenuItem.Text = "結束(&X)";
this.結束XToolStripMenuItem.Click += new System.EventHandler(this.tsmiExitForm_Click);
//
// GroupBox1
//
this.GroupBox1.Controls.Add(this.RadioButton3);
this.GroupBox1.Controls.Add(this.RadioButton2);
this.GroupBox1.Controls.Add(this.RadioButton1);
this.GroupBox1.Font = new System.Drawing.Font("PMingLiU", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.GroupBox1.Location = new System.Drawing.Point(6, 130);
this.GroupBox1.Margin = new System.Windows.Forms.Padding(2);
this.GroupBox1.Name = "GroupBox1";
this.GroupBox1.Padding = new System.Windows.Forms.Padding(2);
this.GroupBox1.Size = new System.Drawing.Size(216, 147);
this.GroupBox1.TabIndex = 8;
this.GroupBox1.TabStop = false;
this.GroupBox1.Text = "請選擇";
//
// RadioButton3
//
this.RadioButton3.Font = new System.Drawing.Font("宋體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.RadioButton3.Location = new System.Drawing.Point(33, 109);
this.RadioButton3.Margin = new System.Windows.Forms.Padding(2);
this.RadioButton3.Name = "RadioButton3";
this.RadioButton3.Size = new System.Drawing.Size(150, 26);
this.RadioButton3.TabIndex = 2;
this.RadioButton3.Text = "純文本文件處理";
this.RadioButton3.CheckedChanged += new System.EventHandler(this.RadioButton3_CheckedChanged);
//
// RadioButton2
//
this.RadioButton2.Font = new System.Drawing.Font("宋體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.RadioButton2.Location = new System.Drawing.Point(33, 70);
this.RadioButton2.Margin = new System.Windows.Forms.Padding(2);
this.RadioButton2.Name = "RadioButton2";
this.RadioButton2.Size = new System.Drawing.Size(150, 26);
this.RadioButton2.TabIndex = 1;
this.RadioButton2.Text = "Excel工作簿處理";
this.RadioButton2.CheckedChanged += new System.EventHandler(this.RadioButton2_CheckedChanged);
//
// RadioButton1
//
this.RadioButton1.Checked = true;
this.RadioButton1.Font = new System.Drawing.Font("宋體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.RadioButton1.Location = new System.Drawing.Point(33, 32);
this.RadioButton1.Margin = new System.Windows.Forms.Padding(2);
this.RadioButton1.Name = "RadioButton1";
this.RadioButton1.Size = new System.Drawing.Size(150, 26);
this.RadioButton1.TabIndex = 0;
this.RadioButton1.TabStop = true;
this.RadioButton1.Text = "Word 文件處理";
this.RadioButton1.CheckedChanged += new System.EventHandler(this.RadioButton1_CheckedChanged);
//
// CH9_DemoForm003
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(228, 282);
this.Controls.Add(this.GroupBox1);
this.Controls.Add(this.MenuStrip1);
this.Controls.Add(this.MenuStrip2);
this.Controls.Add(this.MenuStrip3);
this.MainMenuStrip = this.MenuStrip1;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CH9_DemoForm003";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "動態切換功能表";
this.Load += new System.EventHandler(this.CH5_DemoForm003_Load);
this.MenuStrip3.ResumeLayout(false);
this.MenuStrip3.PerformLayout();
this.MenuStrip2.ResumeLayout(false);
this.MenuStrip2.PerformLayout();
this.MenuStrip1.ResumeLayout(false);
this.MenuStrip1.PerformLayout();
this.GroupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.MenuStrip MenuStrip3;
internal System.Windows.Forms.ToolStripMenuItem tsmiTextFile;
internal System.Windows.Forms.ToolStripMenuItem 建立純文件文件ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 開啟純文字檔案ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 預覽列印純文字文件ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 結束XToolStripMenuItem2;
internal System.Windows.Forms.MenuStrip MenuStrip2;
internal System.Windows.Forms.ToolStripMenuItem tsmiExcelFile;
internal System.Windows.Forms.ToolStripMenuItem 建立Excel活頁簿ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 開啟Excel活頁簿ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 預覽列印Excel活頁簿ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 結束XToolStripMenuItem1;
internal System.Windows.Forms.MenuStrip MenuStrip1;
internal System.Windows.Forms.ToolStripMenuItem tsmiWordFile;
internal System.Windows.Forms.ToolStripMenuItem 建立Word文件ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 開啟Word檔案ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 預覽列印Word文件ToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem 結束XToolStripMenuItem;
internal System.Windows.Forms.GroupBox GroupBox1;
internal System.Windows.Forms.RadioButton RadioButton3;
internal System.Windows.Forms.RadioButton RadioButton2;
internal System.Windows.Forms.RadioButton RadioButton1;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -