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

📄 complier.designer.cs

📁 实现了此法分析器和语法分析器 有详细的代码和文档
💻 CS
字号:
namespace ComplierForm
{
    partial class Complier
    {
        /// <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()
        {
            this.buttonLoadFile = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.richTextBoxSourceFile = new System.Windows.Forms.RichTextBox();
            this.buttonComplie = new System.Windows.Forms.Button();
            this.listViewCode = new System.Windows.Forms.ListView();
            this.columnHeaderName = new System.Windows.Forms.ColumnHeader();
            this.columnHeaderCode = new System.Windows.Forms.ColumnHeader();
            this.tatusStripState = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabelState = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabelName = new System.Windows.Forms.ToolStripStatusLabel();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.groupBox1.SuspendLayout();
            this.tatusStripState.SuspendLayout();
            this.SuspendLayout();
            // 
            // buttonLoadFile
            // 
            this.buttonLoadFile.Location = new System.Drawing.Point(24, 24);
            this.buttonLoadFile.Name = "buttonLoadFile";
            this.buttonLoadFile.Size = new System.Drawing.Size(75, 23);
            this.buttonLoadFile.TabIndex = 0;
            this.buttonLoadFile.Text = "载入文件";
            this.buttonLoadFile.UseVisualStyleBackColor = true;
            this.buttonLoadFile.Click += new System.EventHandler(this.buttonLoadFile_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.richTextBoxSourceFile);
            this.groupBox1.Location = new System.Drawing.Point(12, 53);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(257, 258);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "源文件";
            // 
            // richTextBoxSourceFile
            // 
            this.richTextBoxSourceFile.Location = new System.Drawing.Point(6, 20);
            this.richTextBoxSourceFile.Name = "richTextBoxSourceFile";
            this.richTextBoxSourceFile.Size = new System.Drawing.Size(245, 229);
            this.richTextBoxSourceFile.TabIndex = 0;
            this.richTextBoxSourceFile.Text = "";
            this.richTextBoxSourceFile.TextChanged += new System.EventHandler(this.richTextBoxSourceFile_TextChanged);
            // 
            // buttonComplie
            // 
            this.buttonComplie.Location = new System.Drawing.Point(173, 24);
            this.buttonComplie.Name = "buttonComplie";
            this.buttonComplie.Size = new System.Drawing.Size(75, 23);
            this.buttonComplie.TabIndex = 2;
            this.buttonComplie.Text = "开始词法分析";
            this.buttonComplie.UseVisualStyleBackColor = true;
            this.buttonComplie.Click += new System.EventHandler(this.buttonComplie_Click);
            // 
            // listViewCode
            // 
            this.listViewCode.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeaderName,
            this.columnHeaderCode});
            this.listViewCode.Location = new System.Drawing.Point(287, 64);
            this.listViewCode.Name = "listViewCode";
            this.listViewCode.Size = new System.Drawing.Size(201, 247);
            this.listViewCode.TabIndex = 5;
            this.listViewCode.UseCompatibleStateImageBehavior = false;
            this.listViewCode.View = System.Windows.Forms.View.Details;
            // 
            // columnHeaderName
            // 
            this.columnHeaderName.Text = "单词";
            // 
            // columnHeaderCode
            // 
            this.columnHeaderCode.Text = "编码";
            // 
            // tatusStripState
            // 
            this.tatusStripState.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripStatusLabelState,
            this.toolStripStatusLabelName});
            this.tatusStripState.Location = new System.Drawing.Point(0, 373);
            this.tatusStripState.Name = "tatusStripState";
            this.tatusStripState.Size = new System.Drawing.Size(507, 22);
            this.tatusStripState.TabIndex = 7;
            this.tatusStripState.Text = "statusStripState";
            // 
            // toolStripStatusLabelState
            // 
            this.toolStripStatusLabelState.Name = "toolStripStatusLabelState";
            this.toolStripStatusLabelState.Size = new System.Drawing.Size(35, 17);
            this.toolStripStatusLabelState.Text = "状态:";
            // 
            // toolStripStatusLabelName
            // 
            this.toolStripStatusLabelName.Name = "toolStripStatusLabelName";
            this.toolStripStatusLabelName.Size = new System.Drawing.Size(109, 17);
            this.toolStripStatusLabelName.Text = "toolStripStatusLabel1";
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(12, 334);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(476, 23);
            this.progressBar1.TabIndex = 8;
            // 
            // Complier
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(507, 395);
            this.Controls.Add(this.progressBar1);
            this.Controls.Add(this.tatusStripState);
            this.Controls.Add(this.listViewCode);
            this.Controls.Add(this.buttonComplie);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.buttonLoadFile);
            this.Name = "Complier";
            this.Text = "编译程序";
            this.Load += new System.EventHandler(this.Complier_Load);
            this.groupBox1.ResumeLayout(false);
            this.tatusStripState.ResumeLayout(false);
            this.tatusStripState.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button buttonLoadFile;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.RichTextBox richTextBoxSourceFile;
        private System.Windows.Forms.Button buttonComplie;
        private System.Windows.Forms.ListView listViewCode;
        private System.Windows.Forms.ColumnHeader columnHeaderName;
        private System.Windows.Forms.ColumnHeader columnHeaderCode;
        private System.Windows.Forms.StatusStrip tatusStripState;
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelState;
        private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelName;
        private System.Windows.Forms.ProgressBar progressBar1;
    }
}

⌨️ 快捷键说明

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