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

📄 form1.designer.cs

📁 基于决策树和贝叶斯的预测分析器
💻 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.components = new System.ComponentModel.Container();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.browsedataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.traindata1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.traindata2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.testdata1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.testdata2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            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.testdataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.贝页斯算法ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.createprobability = new System.Windows.Forms.ToolStripMenuItem();
            this.testdataBayesian = new System.Windows.Forms.ToolStripMenuItem();
            this.readmeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.DecisionTree = new System.Windows.Forms.TreeView();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.adultdataDataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.adult_dataDataSet = new DecisionTreeAlgorithm.adult_dataDataSet();
            this.label2 = new System.Windows.Forms.Label();
            this.testtextBox = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.testdata1TableAdapter = new DecisionTreeAlgorithm.adult_dataDataSetTableAdapters.testdata1TableAdapter();
            this.testdata2TableAdapter = new DecisionTreeAlgorithm.adult_dataDataSetTableAdapters.testdata2TableAdapter();
            this.traindata1TableAdapter = new DecisionTreeAlgorithm.adult_dataDataSetTableAdapters.traindata1TableAdapter();
            this.traindata2TableAdapter = new DecisionTreeAlgorithm.adult_dataDataSetTableAdapters.traindata2TableAdapter();
            this.menuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adultdataDataSetBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adult_dataDataSet)).BeginInit();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.browsedataToolStripMenuItem,
            this.choiseToolStripMenuItem,
            this.testdataToolStripMenuItem,
            this.贝页斯算法ToolStripMenuItem,
            this.readmeToolStripMenuItem});
            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";
            // 
            // browsedataToolStripMenuItem
            // 
            this.browsedataToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.traindata1ToolStripMenuItem,
            this.traindata2ToolStripMenuItem,
            this.testdata1ToolStripMenuItem,
            this.testdata2ToolStripMenuItem});
            this.browsedataToolStripMenuItem.Name = "browsedataToolStripMenuItem";
            this.browsedataToolStripMenuItem.Size = new System.Drawing.Size(77, 20);
            this.browsedataToolStripMenuItem.Text = "导入数据库";
            // 
            // traindata1ToolStripMenuItem
            // 
            this.traindata1ToolStripMenuItem.Name = "traindata1ToolStripMenuItem";
            this.traindata1ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
            this.traindata1ToolStripMenuItem.Text = "原始训练集";
            this.traindata1ToolStripMenuItem.Click += new System.EventHandler(this.traindata1ToolStripMenuItem_Click);
            // 
            // traindata2ToolStripMenuItem
            // 
            this.traindata2ToolStripMenuItem.Name = "traindata2ToolStripMenuItem";
            this.traindata2ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
            this.traindata2ToolStripMenuItem.Text = "清理后训练集";
            this.traindata2ToolStripMenuItem.Click += new System.EventHandler(this.traindata2ToolStripMenuItem_Click);
            // 
            // testdata1ToolStripMenuItem
            // 
            this.testdata1ToolStripMenuItem.Name = "testdata1ToolStripMenuItem";
            this.testdata1ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
            this.testdata1ToolStripMenuItem.Text = "原始测试集";
            this.testdata1ToolStripMenuItem.Click += new System.EventHandler(this.testdata1ToolStripMenuItem_Click);
            // 
            // testdata2ToolStripMenuItem
            // 
            this.testdata2ToolStripMenuItem.Name = "testdata2ToolStripMenuItem";
            this.testdata2ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
            this.testdata2ToolStripMenuItem.Text = "清理后测试集";
            this.testdata2ToolStripMenuItem.Click += new System.EventHandler(this.testdata2ToolStripMenuItem_Click);
            // 
            // 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(77, 20);
            this.choiseToolStripMenuItem.Text = "生成决策树";
            // 
            // infomationGainToolStripMenuItem
            // 
            this.infomationGainToolStripMenuItem.Name = "infomationGainToolStripMenuItem";
            this.infomationGainToolStripMenuItem.Size = new System.Drawing.Size(160, 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(160, 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(160, 22);
            this.giniToolStripMenuItem.Text = "Gini";
            this.giniToolStripMenuItem.Click += new System.EventHandler(this.giniToolStripMenuItem_Click);
            // 
            // testdataToolStripMenuItem
            // 
            this.testdataToolStripMenuItem.Name = "testdataToolStripMenuItem";
            this.testdataToolStripMenuItem.Size = new System.Drawing.Size(77, 20);
            this.testdataToolStripMenuItem.Text = "决策树测试";
            this.testdataToolStripMenuItem.Click += new System.EventHandler(this.testdataToolStripMenuItem_Click);
            // 
            // 贝页斯算法ToolStripMenuItem
            // 
            this.贝页斯算法ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.createprobability,
            this.testdataBayesian});
            this.贝页斯算法ToolStripMenuItem.Name = "贝页斯算法ToolStripMenuItem";
            this.贝页斯算法ToolStripMenuItem.Size = new System.Drawing.Size(101, 20);
            this.贝页斯算法ToolStripMenuItem.Text = "朴素贝叶斯算法";

⌨️ 快捷键说明

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