📄 mainform.designer.cs
字号:
namespace Lane.Compiler.WordAnalyser
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.txtSource = new System.Windows.Forms.TextBox();
this.btnGo = new System.Windows.Forms.Button();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.lsbLexical = new System.Windows.Forms.ListBox();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.lsbSyntax = new System.Windows.Forms.ListBox();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.lsbExpression = new System.Windows.Forms.ListBox();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage3.SuspendLayout();
this.SuspendLayout();
//
// txtSource
//
this.txtSource.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtSource.HideSelection = false;
this.txtSource.Location = new System.Drawing.Point(0, 0);
this.txtSource.Multiline = true;
this.txtSource.Name = "txtSource";
this.txtSource.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtSource.Size = new System.Drawing.Size(581, 227);
this.txtSource.TabIndex = 0;
this.txtSource.Text = "void main()\r\n{\r\n int b;\r\n int a;\r\n a = 1 + b * 2;\r\n}";
//
// btnGo
//
this.btnGo.Dock = System.Windows.Forms.DockStyle.Bottom;
this.btnGo.Location = new System.Drawing.Point(0, 455);
this.btnGo.Name = "btnGo";
this.btnGo.Size = new System.Drawing.Size(581, 23);
this.btnGo.TabIndex = 1;
this.btnGo.Text = "btnGo";
this.btnGo.UseVisualStyleBackColor = true;
this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.txtSource);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
this.splitContainer1.Size = new System.Drawing.Size(581, 455);
this.splitContainer1.SplitterDistance = 227;
this.splitContainer1.TabIndex = 3;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(581, 224);
this.tabControl1.TabIndex = 3;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.lsbLexical);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(573, 198);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Lexical";
this.tabPage1.UseVisualStyleBackColor = true;
//
// lsbLexical
//
this.lsbLexical.Dock = System.Windows.Forms.DockStyle.Fill;
this.lsbLexical.FormattingEnabled = true;
this.lsbLexical.Items.AddRange(new object[] {
"Results"});
this.lsbLexical.Location = new System.Drawing.Point(3, 3);
this.lsbLexical.Name = "lsbLexical";
this.lsbLexical.Size = new System.Drawing.Size(567, 186);
this.lsbLexical.TabIndex = 2;
this.lsbLexical.SelectedIndexChanged += new System.EventHandler(this.lsbLexical_SelectedIndexChanged);
//
// tabPage2
//
this.tabPage2.Controls.Add(this.lsbSyntax);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(573, 198);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Syntax";
this.tabPage2.UseVisualStyleBackColor = true;
//
// lsbSyntax
//
this.lsbSyntax.Dock = System.Windows.Forms.DockStyle.Fill;
this.lsbSyntax.FormattingEnabled = true;
this.lsbSyntax.Location = new System.Drawing.Point(3, 3);
this.lsbSyntax.Name = "lsbSyntax";
this.lsbSyntax.Size = new System.Drawing.Size(567, 186);
this.lsbSyntax.TabIndex = 0;
this.lsbSyntax.SelectedIndexChanged += new System.EventHandler(this.lsbSyntax_SelectedIndexChanged);
//
// tabPage3
//
this.tabPage3.Controls.Add(this.lsbExpression);
this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
this.tabPage3.Size = new System.Drawing.Size(573, 198);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Expression";
this.tabPage3.UseVisualStyleBackColor = true;
//
// lsbExpression
//
this.lsbExpression.Dock = System.Windows.Forms.DockStyle.Fill;
this.lsbExpression.FormattingEnabled = true;
this.lsbExpression.Location = new System.Drawing.Point(3, 3);
this.lsbExpression.Name = "lsbExpression";
this.lsbExpression.Size = new System.Drawing.Size(567, 186);
this.lsbExpression.TabIndex = 0;
this.lsbExpression.SelectedIndexChanged += new System.EventHandler(this.lsbExpression_SelectedIndexChanged);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(581, 478);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.btnGo);
this.KeyPreview = true;
this.Name = "MainForm";
this.Text = "Lane\'s Complier";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtSource;
private System.Windows.Forms.Button btnGo;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ListBox lsbLexical;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.ListBox lsbSyntax;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.ListBox lsbExpression;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -