📄 form1.designer.cs
字号:
namespace MyAprioriAlg
{
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.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtMinSupportDegree = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.ListBox();
this.listBox2 = new System.Windows.Forms.ListBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.groupBox1.Controls.Add(this.txtMinSupportDegree);
this.groupBox1.Location = new System.Drawing.Point(6, 29);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(200, 74);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Min_Supprot_Degree";
//
// txtMinSupportDegree
//
this.txtMinSupportDegree.Location = new System.Drawing.Point(34, 35);
this.txtMinSupportDegree.Name = "txtMinSupportDegree";
this.txtMinSupportDegree.Size = new System.Drawing.Size(130, 21);
this.txtMinSupportDegree.TabIndex = 0;
//
// button1
//
this.button1.Location = new System.Drawing.Point(232, 29);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(93, 74);
this.button1.TabIndex = 1;
this.button1.Text = "ShowResult";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(0, 28);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(122, 280);
this.listBox1.TabIndex = 2;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
//
// listBox2
//
this.listBox2.FormattingEnabled = true;
this.listBox2.ItemHeight = 12;
this.listBox2.Location = new System.Drawing.Point(0, 28);
this.listBox2.Name = "listBox2";
this.listBox2.Size = new System.Drawing.Size(110, 280);
this.listBox2.TabIndex = 3;
//
// groupBox2
//
this.groupBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.groupBox2.Controls.Add(this.groupBox5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Location = new System.Drawing.Point(6, 109);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(352, 352);
this.groupBox2.TabIndex = 4;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "ItemSets";
this.groupBox2.Visible = false;
//
// groupBox5
//
this.groupBox5.Controls.Add(this.listBox2);
this.groupBox5.Location = new System.Drawing.Point(162, 38);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(110, 308);
this.groupBox5.TabIndex = 5;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "SupportDegree";
//
// groupBox4
//
this.groupBox4.Controls.Add(this.listBox1);
this.groupBox4.Location = new System.Drawing.Point(34, 38);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(130, 308);
this.groupBox4.TabIndex = 4;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "ItemSet";
//
// groupBox3
//
this.groupBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.groupBox1);
this.groupBox3.Controls.Add(this.groupBox2);
this.groupBox3.ForeColor = System.Drawing.SystemColors.ActiveCaption;
this.groupBox3.Location = new System.Drawing.Point(-1, 2);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(358, 479);
this.groupBox3.TabIndex = 5;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "EgAPriori";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(354, 459);
this.Controls.Add(this.groupBox3);
this.Name = "Form1";
this.Text = "AprioriAlgorithm_040678_夏荣艳";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtMinSupportDegree;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.ListBox listBox2;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.GroupBox groupBox5;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -