📄 analyze.designer.cs
字号:
this.richTextOpen.Size = new System.Drawing.Size(224, 213);
this.richTextOpen.TabIndex = 0;
this.richTextOpen.Text = "";
//
// toolStrip
//
this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newFile,
this.openFile,
this.saveFile,
this.toolStripSeparator6,
this.pretreatment,
this.analyzer,
this.toolStripSeparator,
this.帮助LToolStripButton});
this.toolStrip.Location = new System.Drawing.Point(3, 0);
this.toolStrip.Name = "toolStrip";
this.toolStrip.Size = new System.Drawing.Size(193, 25);
this.toolStrip.TabIndex = 0;
//
// openFile
//
this.openFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.openFile.Image = ((System.Drawing.Image)(resources.GetObject("openFile.Image")));
this.openFile.ImageTransparentColor = System.Drawing.Color.Magenta;
this.openFile.Name = "openFile";
this.openFile.Size = new System.Drawing.Size(23, 22);
this.openFile.Text = "打开(&O)";
this.openFile.Click += new System.EventHandler(this.openFile_Click);
//
// saveFile
//
this.saveFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.saveFile.Image = ((System.Drawing.Image)(resources.GetObject("saveFile.Image")));
this.saveFile.ImageTransparentColor = System.Drawing.Color.Magenta;
this.saveFile.Name = "saveFile";
this.saveFile.Size = new System.Drawing.Size(23, 22);
this.saveFile.Text = "保存(&S)";
this.saveFile.Click += new System.EventHandler(this.saveFile_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
//
// pretreatment
//
this.pretreatment.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.pretreatment.Image = ((System.Drawing.Image)(resources.GetObject("pretreatment.Image")));
this.pretreatment.ImageTransparentColor = System.Drawing.Color.Magenta;
this.pretreatment.Name = "pretreatment";
this.pretreatment.Size = new System.Drawing.Size(23, 22);
this.pretreatment.Text = "预处理(&P)";
this.pretreatment.Click += new System.EventHandler(this.pretreatment_Click);
//
// analyzer
//
this.analyzer.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.analyzer.Image = ((System.Drawing.Image)(resources.GetObject("analyzer.Image")));
this.analyzer.ImageTransparentColor = System.Drawing.Color.Magenta;
this.analyzer.Name = "analyzer";
this.analyzer.Size = new System.Drawing.Size(23, 22);
this.analyzer.Text = "词法分析(&A)";
this.analyzer.Click += new System.EventHandler(this.analyzer_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(236, 7);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(113, 12);
this.label2.TabIndex = 7;
this.label2.Text = "定义符号现实如下 :";
//
// newFile
//
this.newFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.newFile.Image = ((System.Drawing.Image)(resources.GetObject("newFile.Image")));
this.newFile.ImageTransparentColor = System.Drawing.Color.Magenta;
this.newFile.Name = "newFile";
this.newFile.Size = new System.Drawing.Size(23, 22);
this.newFile.Text = "新建(&N)";
this.newFile.Click += new System.EventHandler(this.newFile_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
//
// 帮助LToolStripButton
//
this.帮助LToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.帮助LToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("帮助LToolStripButton.Image")));
this.帮助LToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.帮助LToolStripButton.Name = "帮助LToolStripButton";
this.帮助LToolStripButton.Size = new System.Drawing.Size(23, 22);
this.帮助LToolStripButton.Text = "帮助(&L)";
this.帮助LToolStripButton.Click += new System.EventHandler(this.帮助LToolStripButton_Click);
//
// Analyze
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(565, 382);
this.Controls.Add(this.toolStripContainer1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Analyze";
this.Text = "Analyzer";
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.ContentPanel.PerformLayout();
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.toolStrip.ResumeLayout(false);
this.toolStrip.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
private System.Windows.Forms.ToolStrip toolStrip;
private System.Windows.Forms.ToolStripButton openFile;
private System.Windows.Forms.ToolStripButton saveFile;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripButton pretreatment;
private System.Windows.Forms.ToolStripButton analyzer;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
private System.Windows.Forms.RichTextBox richTextOpen;
private System.Windows.Forms.TextBox textBox;
private System.Windows.Forms.Label label;
private System.Windows.Forms.RichTextBox richTextResult;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ListBox listBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ToolStripButton newFile;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private System.Windows.Forms.ToolStripButton 帮助LToolStripButton;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -