⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 使用C#实现的决策树算法实例
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace DecisionTreeAlgorithm
{
    partial class Form1
    {
        /// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.choiseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.infomationGainToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.gainRateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.giniToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.testDateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.inportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.label1 = new System.Windows.Forms.Label();
            this.Testdata = new System.Windows.Forms.ListBox();
            this.btnDTree = new System.Windows.Forms.Button();
            this.DecisionTree = new System.Windows.Forms.TreeView();
            this.button1 = new System.Windows.Forms.Button();
            this.comboBox5 = new System.Windows.Forms.ComboBox();
            this.comboBox4 = new System.Windows.Forms.ComboBox();
            this.comboBox3 = new System.Windows.Forms.ComboBox();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.cbAge = new System.Windows.Forms.ComboBox();
            this.lblBuysComputer = new System.Windows.Forms.Label();
            this.lblCredit = new System.Windows.Forms.Label();
            this.lblStudent = new System.Windows.Forms.Label();
            this.lblIncome = new System.Windows.Forms.Label();
            this.lblAge = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.choiseToolStripMenuItem,
            this.testDateToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(708, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // choiseToolStripMenuItem
            // 
            this.choiseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.infomationGainToolStripMenuItem,
            this.gainRateToolStripMenuItem,
            this.giniToolStripMenuItem});
            this.choiseToolStripMenuItem.Name = "choiseToolStripMenuItem";
            this.choiseToolStripMenuItem.Size = new System.Drawing.Size(129, 20);
            this.choiseToolStripMenuItem.Text = "Choise Atrribute Metric";
            // 
            // infomationGainToolStripMenuItem
            // 
            this.infomationGainToolStripMenuItem.Name = "infomationGainToolStripMenuItem";
            this.infomationGainToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.infomationGainToolStripMenuItem.Text = "Infomation Gain";
            this.infomationGainToolStripMenuItem.Click += new System.EventHandler(this.infomationGainToolStripMenuItem_Click);
            // 
            // gainRateToolStripMenuItem
            // 
            this.gainRateToolStripMenuItem.Name = "gainRateToolStripMenuItem";
            this.gainRateToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.gainRateToolStripMenuItem.Text = "Gain Rate";
            this.gainRateToolStripMenuItem.Click += new System.EventHandler(this.gainRateToolStripMenuItem_Click);
            // 
            // giniToolStripMenuItem
            // 
            this.giniToolStripMenuItem.Name = "giniToolStripMenuItem";
            this.giniToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.giniToolStripMenuItem.Text = "Gini";
            this.giniToolStripMenuItem.Click += new System.EventHandler(this.giniToolStripMenuItem_Click);
            // 
            // testDateToolStripMenuItem
            // 
            this.testDateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.inportToolStripMenuItem,
            this.addToolStripMenuItem,
            this.deleteToolStripMenuItem});
            this.testDateToolStripMenuItem.Name = "testDateToolStripMenuItem";
            this.testDateToolStripMenuItem.Size = new System.Drawing.Size(63, 20);
            this.testDateToolStripMenuItem.Text = "TestDate";
            // 
            // inportToolStripMenuItem
            // 
            this.inportToolStripMenuItem.Name = "inportToolStripMenuItem";
            this.inportToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
            this.inportToolStripMenuItem.Text = "Inport";
            this.inportToolStripMenuItem.Click += new System.EventHandler(this.inportToolStripMenuItem_Click);
            // 
            // addToolStripMenuItem
            // 
            this.addToolStripMenuItem.Name = "addToolStripMenuItem";
            this.addToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
            this.addToolStripMenuItem.Text = "Add";
            this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
            this.deleteToolStripMenuItem.Text = "Delete";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(23, 28);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(51, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "TestDate";
            // 
            // Testdata
            // 
            this.Testdata.FormattingEnabled = true;
            this.Testdata.Location = new System.Drawing.Point(26, 45);
            this.Testdata.Name = "Testdata";
            this.Testdata.Size = new System.Drawing.Size(398, 225);
            this.Testdata.TabIndex = 2;
            // 
            // btnDTree
            // 
            this.btnDTree.Location = new System.Drawing.Point(26, 300);
            this.btnDTree.Name = "btnDTree";
            this.btnDTree.Size = new System.Drawing.Size(127, 23);
            this.btnDTree.TabIndex = 5;
            this.btnDTree.Text = "DecisionTree";
            this.btnDTree.UseVisualStyleBackColor = true;
            this.btnDTree.Click += new System.EventHandler(this.btnDTree_Click);
            // 
            // DecisionTree
            // 
            this.DecisionTree.Location = new System.Drawing.Point(439, 45);
            this.DecisionTree.Name = "DecisionTree";
            this.DecisionTree.Size = new System.Drawing.Size(231, 225);
            this.DecisionTree.TabIndex = 6;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(523, 482);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(121, 23);
            this.button1.TabIndex = 22;
            this.button1.Text = "Add";
            this.button1.UseVisualStyleBackColor = true;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -