📄 form1.designer.cs
字号:
namespace compiler
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.file = new System.Windows.Forms.ToolStripMenuItem();
this.open = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.menu_save = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.menu_exit = new System.Windows.Forms.ToolStripMenuItem();
this.edit = new System.Windows.Forms.ToolStripMenuItem();
this.menu_undo = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.menu_cut = new System.Windows.Forms.ToolStripMenuItem();
this.menu_copy = new System.Windows.Forms.ToolStripMenuItem();
this.menu_paste = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.select_all = new System.Windows.Forms.ToolStripMenuItem();
this.compile = new System.Windows.Forms.ToolStripMenuItem();
this.scanner = new System.Windows.Forms.ToolStripMenuItem();
this.parser = new System.Windows.Forms.ToolStripMenuItem();
this.run = new System.Windows.Forms.ToolStripMenuItem();
this.go = new System.Windows.Forms.ToolStripMenuItem();
this.sources = new System.Windows.Forms.RichTextBox();
this.console = new System.Windows.Forms.RichTextBox();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.label1 = new System.Windows.Forms.Label();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.新建ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.file,
this.edit,
this.compile,
this.run});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(702, 24);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// file
//
this.file.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.open,
this.toolStripSeparator,
this.menu_save,
this.toolStripSeparator1,
this.toolStripSeparator2,
this.menu_exit,
this.新建ToolStripMenuItem});
this.file.Name = "file";
this.file.Size = new System.Drawing.Size(59, 20);
this.file.Text = "文件(&F)";
//
// open
//
this.open.Image = ((System.Drawing.Image)(resources.GetObject("open.Image")));
this.open.ImageTransparentColor = System.Drawing.Color.Magenta;
this.open.Name = "open";
this.open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.open.Size = new System.Drawing.Size(153, 22);
this.open.Text = "打开(&O)";
this.open.Click += new System.EventHandler(this.open_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(150, 6);
//
// menu_save
//
this.menu_save.Image = ((System.Drawing.Image)(resources.GetObject("menu_save.Image")));
this.menu_save.ImageTransparentColor = System.Drawing.Color.Magenta;
this.menu_save.Name = "menu_save";
this.menu_save.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.menu_save.Size = new System.Drawing.Size(153, 22);
this.menu_save.Text = "保存(&S)";
this.menu_save.Click += new System.EventHandler(this.menu_save_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(150, 6);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(150, 6);
//
// menu_exit
//
this.menu_exit.Name = "menu_exit";
this.menu_exit.Size = new System.Drawing.Size(153, 22);
this.menu_exit.Text = "退出(&X)";
//
// edit
//
this.edit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menu_undo,
this.toolStripSeparator3,
this.menu_cut,
this.menu_copy,
this.menu_paste,
this.toolStripSeparator4,
this.select_all});
this.edit.Name = "edit";
this.edit.Size = new System.Drawing.Size(59, 20);
this.edit.Text = "编辑(&E)";
//
// menu_undo
//
this.menu_undo.Name = "menu_undo";
this.menu_undo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
this.menu_undo.Size = new System.Drawing.Size(153, 22);
this.menu_undo.Text = "撤消(&U)";
this.menu_undo.Click += new System.EventHandler(this.menu_undo_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(150, 6);
//
// menu_cut
//
this.menu_cut.Image = ((System.Drawing.Image)(resources.GetObject("menu_cut.Image")));
this.menu_cut.ImageTransparentColor = System.Drawing.Color.Magenta;
this.menu_cut.Name = "menu_cut";
this.menu_cut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
this.menu_cut.Size = new System.Drawing.Size(153, 22);
this.menu_cut.Text = "剪切(&T)";
this.menu_cut.Click += new System.EventHandler(this.menu_cut_Click);
//
// menu_copy
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -