⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 c--解释器
💻 CS
📖 第 1 页 / 共 2 页
字号:
            // 
            this.menu_copy.Image = ((System.Drawing.Image)(resources.GetObject("menu_copy.Image")));
            this.menu_copy.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.menu_copy.Name = "menu_copy";
            this.menu_copy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
            this.menu_copy.Size = new System.Drawing.Size(153, 22);
            this.menu_copy.Text = "复制(&C)";
            this.menu_copy.Click += new System.EventHandler(this.menu_copy_Click);
            // 
            // menu_paste
            // 
            this.menu_paste.Image = ((System.Drawing.Image)(resources.GetObject("menu_paste.Image")));
            this.menu_paste.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.menu_paste.Name = "menu_paste";
            this.menu_paste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
            this.menu_paste.Size = new System.Drawing.Size(153, 22);
            this.menu_paste.Text = "粘贴(&P)";
            this.menu_paste.Click += new System.EventHandler(this.menu_paste_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(150, 6);
            // 
            // select_all
            // 
            this.select_all.Name = "select_all";
            this.select_all.Size = new System.Drawing.Size(153, 22);
            this.select_all.Text = "全选(&A)";
            // 
            // compile
            // 
            this.compile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.scanner,
            this.parser});
            this.compile.Name = "compile";
            this.compile.Size = new System.Drawing.Size(41, 20);
            this.compile.Text = "解释";
            // 
            // scanner
            // 
            this.scanner.Name = "scanner";
            this.scanner.Size = new System.Drawing.Size(118, 22);
            this.scanner.Text = "词法分析";
            this.scanner.Click += new System.EventHandler(this.scanner_Click);
            // 
            // parser
            // 
            this.parser.Name = "parser";
            this.parser.Size = new System.Drawing.Size(118, 22);
            this.parser.Text = "语法分析";
            this.parser.Click += new System.EventHandler(this.parser_Click);
            // 
            // run
            // 
            this.run.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.go});
            this.run.Name = "run";
            this.run.Size = new System.Drawing.Size(41, 20);
            this.run.Text = "执行";
            // 
            // go
            // 
            this.go.Name = "go";
            this.go.Size = new System.Drawing.Size(112, 22);
            this.go.Text = "执行(&R)";
            this.go.Click += new System.EventHandler(this.go_Click);
            // 
            // sources
            // 
            this.sources.AcceptsTab = true;
            this.sources.Location = new System.Drawing.Point(0, 22);
            this.sources.Name = "sources";
            this.sources.Size = new System.Drawing.Size(705, 350);
            this.sources.TabIndex = 5;
            this.sources.Text = "";
            // 
            // console
            // 
            this.console.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.console.Location = new System.Drawing.Point(0, 368);
            this.console.Name = "console";
            this.console.Size = new System.Drawing.Size(705, 300);
            this.console.TabIndex = 6;
            this.console.Text = "";
            this.console.KeyDown += new System.Windows.Forms.KeyEventHandler(this.console_KeyDown);
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.FileName = "openFileDialog1";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.SystemColors.Control;
            this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.ForeColor = System.Drawing.Color.Firebrick;
            this.label1.Location = new System.Drawing.Point(-3, 358);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(97, 14);
            this.label1.TabIndex = 8;
            this.label1.Text = "请输入一个值";
            this.label1.Visible = false;
            // 
            // 新建ToolStripMenuItem
            // 
            this.新建ToolStripMenuItem.Name = "新建ToolStripMenuItem";
            this.新建ToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
            this.新建ToolStripMenuItem.Text = "新建";
            this.新建ToolStripMenuItem.Click += new System.EventHandler(this.新建ToolStripMenuItem_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.ClientSize = new System.Drawing.Size(702, 666);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.console);
            this.Controls.Add(this.sources);
            this.Controls.Add(this.menuStrip1);
            this.IsMdiContainer = true;
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "Form1";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem file;
        private System.Windows.Forms.ToolStripMenuItem open;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
        private System.Windows.Forms.ToolStripMenuItem menu_save;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
        private System.Windows.Forms.ToolStripMenuItem menu_exit;
        private System.Windows.Forms.ToolStripMenuItem edit;
        private System.Windows.Forms.ToolStripMenuItem menu_undo;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
        private System.Windows.Forms.ToolStripMenuItem menu_cut;
        private System.Windows.Forms.ToolStripMenuItem menu_copy;
        private System.Windows.Forms.ToolStripMenuItem menu_paste;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
        private System.Windows.Forms.ToolStripMenuItem select_all;
        private System.Windows.Forms.ToolStripMenuItem compile;
        private System.Windows.Forms.ToolStripMenuItem scanner;
        private System.Windows.Forms.ToolStripMenuItem run;
        private System.Windows.Forms.ToolStripMenuItem parser;
        private System.Windows.Forms.RichTextBox sources;
        private System.Windows.Forms.RichTextBox console;
        private System.Windows.Forms.ToolStripMenuItem go;
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.ToolStripMenuItem 新建ToolStripMenuItem;
        private System.Windows.Forms.SaveFileDialog saveFileDialog1;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -