📄 analyze.designer.cs
字号:
namespace Analyzer
{
partial class Analyze
{
/// <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(Analyze));
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.listBox = new System.Windows.Forms.ListBox();
this.richTextResult = new System.Windows.Forms.RichTextBox();
this.label1 = new System.Windows.Forms.Label();
this.label = new System.Windows.Forms.Label();
this.textBox = new System.Windows.Forms.TextBox();
this.richTextOpen = new System.Windows.Forms.RichTextBox();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.openFile = new System.Windows.Forms.ToolStripButton();
this.saveFile = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.pretreatment = new System.Windows.Forms.ToolStripButton();
this.analyzer = new System.Windows.Forms.ToolStripButton();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.label2 = new System.Windows.Forms.Label();
this.newFile = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.帮助LToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
this.toolStrip.SuspendLayout();
this.SuspendLayout();
//
// toolStripContainer1
//
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.BackColor = System.Drawing.SystemColors.Info;
this.toolStripContainer1.ContentPanel.Controls.Add(this.label2);
this.toolStripContainer1.ContentPanel.Controls.Add(this.listBox);
this.toolStripContainer1.ContentPanel.Controls.Add(this.richTextResult);
this.toolStripContainer1.ContentPanel.Controls.Add(this.label1);
this.toolStripContainer1.ContentPanel.Controls.Add(this.label);
this.toolStripContainer1.ContentPanel.Controls.Add(this.textBox);
this.toolStripContainer1.ContentPanel.Controls.Add(this.richTextOpen);
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(565, 357);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(565, 382);
this.toolStripContainer1.TabIndex = 0;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// toolStripContainer1.TopToolStripPanel
//
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip);
//
// listBox
//
this.listBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listBox.FormattingEnabled = true;
this.listBox.ItemHeight = 12;
this.listBox.Items.AddRange(new object[] {
"1->\"+\" 2->\"-\" 3->\"{\" 4->\"}\" 5->\"(\"",
"6->\")\" 7->\";\" 8->\"==\" 9->\"=\" 10->\"<=\"",
"11->\"<\" 12->\">=\" 13->\">\" 14->\"!=\" ",
"15->\"标识符\" 16->\"数字\" 17->\"#\" 18->\"include\"",
"19->\"if\" 20->\"else\" 21->\"return\" 22->\"int\"",
"23->\"main\" 24->\"printf\""});
this.listBox.Location = new System.Drawing.Point(235, 25);
this.listBox.Name = "listBox";
this.listBox.Size = new System.Drawing.Size(330, 88);
this.listBox.TabIndex = 6;
//
// richTextResult
//
this.richTextResult.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextResult.Location = new System.Drawing.Point(235, 132);
this.richTextResult.Name = "richTextResult";
this.richTextResult.Size = new System.Drawing.Size(330, 226);
this.richTextResult.TabIndex = 4;
this.richTextResult.Text = "";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(238, 115);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(113, 12);
this.label1.TabIndex = 3;
this.label1.Text = "词法分析结果显示:";
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(5, 220);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(89, 12);
this.label.TabIndex = 2;
this.label.Text = "处理结果显示:";
//
// textBox
//
this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox.Location = new System.Drawing.Point(0, 235);
this.textBox.Multiline = true;
this.textBox.Name = "textBox";
this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox.Size = new System.Drawing.Size(224, 123);
this.textBox.TabIndex = 1;
//
// richTextOpen
//
this.richTextOpen.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextOpen.Location = new System.Drawing.Point(0, 1);
this.richTextOpen.Name = "richTextOpen";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -