📄 form1.designer.cs
字号:
namespace PDAProject
{
partial class Form1
{
/// <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.components = new System.ComponentModel.Container();
this.languages = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.gramDec = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.sentences = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.stackContent = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.leftSentences = new System.Windows.Forms.TextBox();
this.button2 = new System.Windows.Forms.Button();
this.label8 = new System.Windows.Forms.Label();
this.minitueSetting = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.listBox1 = new System.Windows.Forms.ListBox();
this.listBox2 = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// languages
//
this.languages.Location = new System.Drawing.Point(111, 70);
this.languages.Name = "languages";
this.languages.Size = new System.Drawing.Size(133, 21);
this.languages.TabIndex = 0;
this.languages.Text = "L={w2w\'|w IN {0,1}*}";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(16, 76);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 12);
this.label1.TabIndex = 1;
this.label1.Text = "Input language";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(294, 73);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(101, 12);
this.label2.TabIndex = 2;
this.label2.Text = "Gram description";
//
// gramDec
//
this.gramDec.Location = new System.Drawing.Point(401, 67);
this.gramDec.Name = "gramDec";
this.gramDec.Size = new System.Drawing.Size(188, 21);
this.gramDec.TabIndex = 3;
this.gramDec.Text = "S->2;S->0SA;S->1SB;A->0;B->1";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(16, 113);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(89, 12);
this.label3.TabIndex = 4;
this.label3.Text = "Input sentence";
//
// sentences
//
this.sentences.Location = new System.Drawing.Point(111, 110);
this.sentences.Name = "sentences";
this.sentences.Size = new System.Drawing.Size(143, 21);
this.sentences.TabIndex = 5;
this.sentences.Text = "0012100#";
//
// button1
//
this.button1.Location = new System.Drawing.Point(306, 106);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(109, 27);
this.button1.TabIndex = 6;
this.button1.Text = "Identify";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(454, 113);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 7;
this.label4.Text = "Result";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(26, 311);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(89, 12);
this.label5.TabIndex = 8;
this.label5.Text = "模拟演示出入栈";
//
// stackContent
//
this.stackContent.Location = new System.Drawing.Point(153, 230);
this.stackContent.Name = "stackContent";
this.stackContent.Size = new System.Drawing.Size(149, 21);
this.stackContent.TabIndex = 9;
this.stackContent.Text = "#S";
this.stackContent.Visible = false;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(151, 264);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(35, 12);
this.label6.TabIndex = 10;
this.label6.Text = "stack";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(342, 264);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(89, 12);
this.label7.TabIndex = 11;
this.label7.Text = "left sentences";
//
// leftSentences
//
this.leftSentences.Location = new System.Drawing.Point(344, 230);
this.leftSentences.Name = "leftSentences";
this.leftSentences.Size = new System.Drawing.Size(128, 21);
this.leftSentences.TabIndex = 12;
this.leftSentences.Visible = false;
//
// button2
//
this.button2.Location = new System.Drawing.Point(573, 265);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(118, 28);
this.button2.TabIndex = 13;
this.button2.Text = "stack display";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(709, 311);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(83, 12);
this.label8.TabIndex = 14;
this.label8.Text = "time interval";
//
// minitueSetting
//
this.minitueSetting.Location = new System.Drawing.Point(624, 311);
this.minitueSetting.Name = "minitueSetting";
this.minitueSetting.Size = new System.Drawing.Size(44, 21);
this.minitueSetting.TabIndex = 15;
this.minitueSetting.Text = "1";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(672, 315);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(41, 12);
this.label9.TabIndex = 16;
this.label9.Text = "second";
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label10.Location = new System.Drawing.Point(16, 334);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(125, 10);
this.label10.TabIndex = 17;
this.label10.Text = "模拟正在进行中。。。。。";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("楷体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label11.ForeColor = System.Drawing.Color.Red;
this.label11.Location = new System.Drawing.Point(12, 20);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(679, 19);
this.label11.TabIndex = 18;
this.label11.Text = "08计算机应用技术硕研 姓名:音学 学号:E200802032";
this.label11.Click += new System.EventHandler(this.label11_Click);
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(153, 279);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(152, 112);
this.listBox1.TabIndex = 19;
//
// listBox2
//
this.listBox2.FormattingEnabled = true;
this.listBox2.ItemHeight = 12;
this.listBox2.Location = new System.Drawing.Point(344, 280);
this.listBox2.Name = "listBox2";
this.listBox2.Size = new System.Drawing.Size(154, 112);
this.listBox2.TabIndex = 20;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.ClientSize = new System.Drawing.Size(716, 406);
this.Controls.Add(this.listBox2);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.label11);
this.Controls.Add(this.label10);
this.Controls.Add(this.label9);
this.Controls.Add(this.minitueSetting);
this.Controls.Add(this.label8);
this.Controls.Add(this.button2);
this.Controls.Add(this.leftSentences);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.stackContent);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.button1);
this.Controls.Add(this.sentences);
this.Controls.Add(this.label3);
this.Controls.Add(this.gramDec);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.languages);
this.Name = "Form1";
this.Text = " ";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox languages;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox gramDec;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox sentences;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox stackContent;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox leftSentences;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox minitueSetting;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.ListBox listBox2;
public System.Windows.Forms.Timer timer1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -