亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mainform.cs

?? Cluster validation program including Dunn s index, Davies-Bouldin Index and Scat-Dis index.
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Threading;

namespace Cluster_Validations
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class MainForm : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TabPage tabPage1;
		private System.Windows.Forms.TabPage tabPage2;
		private System.Windows.Forms.TabPage tabPage3;
		private System.Windows.Forms.TabPage tabPage4;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.CheckBox checkBoxGDI;
		private System.Windows.Forms.Button buttonDBIdelete;
		private System.Windows.Forms.Button buttonDBIadd;
		private System.Windows.Forms.CheckBox checkBoxSDI;
		private System.Windows.Forms.CheckBox checkBoxDBI;
		private System.Windows.Forms.NumericUpDown numericUpDownSetNumber;
		private System.Windows.Forms.TextBox textBoxOpenFile;
		private System.Windows.Forms.Button buttonOpenFile;
		private System.Windows.Forms.TabControl tabControl;
		private System.Windows.Forms.NumericUpDown numericUpDownDBIq;
		private System.Windows.Forms.NumericUpDown numericUpDownDBIt;
		private System.Windows.Forms.Button buttonValidate;
		private System.Windows.Forms.Button buttonExit;
		private System.Windows.Forms.Button buttonSave;
		private System.Windows.Forms.ListView listViewRawData;
		private System.Windows.Forms.ListView listViewGDIResult;
		private System.Windows.Forms.ListView listViewDBIResult;
		private System.Windows.Forms.ListView listViewSDIResult;
		private System.Windows.Forms.OpenFileDialog openFileDialog;
		private System.Windows.Forms.TreeView treeViewDBI;
		private Excel.Application objExcel = null;
		private Excel.Worksheet m_worksheet = null;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public MainForm()
		{
			InitializeComponent();

			// Excel Application 矯累
			try{
				if ( this.objExcel == null) {
					this.objExcel = new Excel.Application();
				}
			}
			catch( System.Exception e ){
				System.Windows.Forms.MessageBox.Show( e.StackTrace );
				System.Windows.Forms.MessageBox.Show( e.ToString() );
				System.Windows.Forms.MessageBox.Show("ERROR: EXCEL couldn't be started!");
				System.Windows.Forms.Application.Exit();
			}	
		
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			// Excel Application闌 剛歷 磷牢促
			if ( this.objExcel != null )
				this.objExcel.Quit();
			if( disposing )
			{
				if (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.openFileDialog = new System.Windows.Forms.OpenFileDialog();
			this.checkBoxGDI = new System.Windows.Forms.CheckBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.treeViewDBI = new System.Windows.Forms.TreeView();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.numericUpDownDBIt = new System.Windows.Forms.NumericUpDown();
			this.numericUpDownDBIq = new System.Windows.Forms.NumericUpDown();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.checkBoxSDI = new System.Windows.Forms.CheckBox();
			this.checkBoxDBI = new System.Windows.Forms.CheckBox();
			this.buttonDBIadd = new System.Windows.Forms.Button();
			this.buttonDBIdelete = new System.Windows.Forms.Button();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.numericUpDownSetNumber = new System.Windows.Forms.NumericUpDown();
			this.label2 = new System.Windows.Forms.Label();
			this.textBoxOpenFile = new System.Windows.Forms.TextBox();
			this.buttonOpenFile = new System.Windows.Forms.Button();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.listViewRawData = new System.Windows.Forms.ListView();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.listViewGDIResult = new System.Windows.Forms.ListView();
			this.tabPage3 = new System.Windows.Forms.TabPage();
			this.listViewDBIResult = new System.Windows.Forms.ListView();
			this.tabPage4 = new System.Windows.Forms.TabPage();
			this.listViewSDIResult = new System.Windows.Forms.ListView();
			this.tabControl = new System.Windows.Forms.TabControl();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.buttonValidate = new System.Windows.Forms.Button();
			this.buttonExit = new System.Windows.Forms.Button();
			this.buttonSave = new System.Windows.Forms.Button();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownDBIt)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownDBIq)).BeginInit();
			this.groupBox3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDownSetNumber)).BeginInit();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.tabPage3.SuspendLayout();
			this.tabPage4.SuspendLayout();
			this.tabControl.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.SuspendLayout();
			// 
			// openFileDialog
			// 
			this.openFileDialog.Filter = "*.xls | *.xls";
			this.openFileDialog.Title = "Cluster 單撈磐 佬扁";
			this.openFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog_FileOk);
			// 
			// checkBoxGDI
			// 
			this.checkBoxGDI.Location = new System.Drawing.Point(16, 24);
			this.checkBoxGDI.Name = "checkBoxGDI";
			this.checkBoxGDI.Size = new System.Drawing.Size(176, 40);
			this.checkBoxGDI.TabIndex = 1;
			this.checkBoxGDI.Text = "Dunn\'s Index (GDI) ";
			this.checkBoxGDI.CheckedChanged += new System.EventHandler(this.checkBoxGDI_CheckedChanged);
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.treeViewDBI,
																					this.groupBox2,
																					this.checkBoxSDI,
																					this.checkBoxDBI,
																					this.checkBoxGDI,
																					this.buttonDBIadd,
																					this.buttonDBIdelete});
			this.groupBox1.Location = new System.Drawing.Point(8, 144);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(280, 240);
			this.groupBox1.TabIndex = 2;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Validator";
			// 
			// treeViewDBI
			// 
			this.treeViewDBI.ImageIndex = -1;
			this.treeViewDBI.Location = new System.Drawing.Point(208, 104);
			this.treeViewDBI.Name = "treeViewDBI";
			this.treeViewDBI.SelectedImageIndex = -1;
			this.treeViewDBI.ShowLines = false;
			this.treeViewDBI.ShowPlusMinus = false;
			this.treeViewDBI.ShowRootLines = false;
			this.treeViewDBI.Size = new System.Drawing.Size(56, 80);
			this.treeViewDBI.Sorted = true;
			this.treeViewDBI.TabIndex = 6;
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.numericUpDownDBIt,
																					this.numericUpDownDBIq,
																					this.label4,
																					this.label3});
			this.groupBox2.Location = new System.Drawing.Point(56, 96);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(144, 56);
			this.groupBox2.TabIndex = 4;
			this.groupBox2.TabStop = false;
			// 
			// numericUpDownDBIt
			// 
			this.numericUpDownDBIt.Enabled = false;
			this.numericUpDownDBIt.Location = new System.Drawing.Point(96, 24);
			this.numericUpDownDBIt.Minimum = new System.Decimal(new int[] {
																			  1,
																			  0,
																			  0,
																			  0});
			this.numericUpDownDBIt.Name = "numericUpDownDBIt";
			this.numericUpDownDBIt.Size = new System.Drawing.Size(40, 21);
			this.numericUpDownDBIt.TabIndex = 4;
			this.numericUpDownDBIt.Value = new System.Decimal(new int[] {
																			1,
																			0,
																			0,
																			0});
			// 
			// numericUpDownDBIq
			// 
			this.numericUpDownDBIq.Enabled = false;
			this.numericUpDownDBIq.Location = new System.Drawing.Point(24, 24);
			this.numericUpDownDBIq.Minimum = new System.Decimal(new int[] {
																			  1,
																			  0,
																			  0,
																			  0});
			this.numericUpDownDBIq.Name = "numericUpDownDBIq";
			this.numericUpDownDBIq.Size = new System.Drawing.Size(40, 21);
			this.numericUpDownDBIq.TabIndex = 3;
			this.numericUpDownDBIq.Value = new System.Decimal(new int[] {
																			1,
																			0,
																			0,
																			0});
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(80, 24);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(24, 23);
			this.label4.TabIndex = 1;
			this.label4.Text = "t:";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(8, 24);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(24, 23);
			this.label3.TabIndex = 0;
			this.label3.Text = "q:";
			// 
			// checkBoxSDI
			// 
			this.checkBoxSDI.Location = new System.Drawing.Point(16, 192);
			this.checkBoxSDI.Name = "checkBoxSDI";
			this.checkBoxSDI.Size = new System.Drawing.Size(160, 32);
			this.checkBoxSDI.TabIndex = 3;
			this.checkBoxSDI.Text = "Scat-Dis Index (SDI)";
			this.checkBoxSDI.CheckedChanged += new System.EventHandler(this.checkBoxSDI_CheckedChanged);
			// 
			// checkBoxDBI
			// 
			this.checkBoxDBI.Location = new System.Drawing.Point(16, 56);
			this.checkBoxDBI.Name = "checkBoxDBI";
			this.checkBoxDBI.Size = new System.Drawing.Size(184, 48);
			this.checkBoxDBI.TabIndex = 2;
			this.checkBoxDBI.Text = "Davies-Bouldin Index (DBI)";
			this.checkBoxDBI.CheckedChanged += new System.EventHandler(this.checkBoxDBI_CheckedChanged);
			// 
			// buttonDBIadd
			// 
			this.buttonDBIadd.Enabled = false;
			this.buttonDBIadd.Location = new System.Drawing.Point(72, 160);
			this.buttonDBIadd.Name = "buttonDBIadd";
			this.buttonDBIadd.Size = new System.Drawing.Size(56, 23);
			this.buttonDBIadd.TabIndex = 0;
			this.buttonDBIadd.Text = "Add";
			this.buttonDBIadd.Click += new System.EventHandler(this.buttonDBIadd_Click);
			// 
			// buttonDBIdelete
			// 
			this.buttonDBIdelete.Enabled = false;
			this.buttonDBIdelete.Location = new System.Drawing.Point(144, 160);
			this.buttonDBIdelete.Name = "buttonDBIdelete";
			this.buttonDBIdelete.Size = new System.Drawing.Size(56, 23);
			this.buttonDBIdelete.TabIndex = 1;
			this.buttonDBIdelete.Text = "Delete";
			this.buttonDBIdelete.Click += new System.EventHandler(this.buttonDBIdelete_Click);
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.numericUpDownSetNumber,
																					this.label2});
			this.groupBox3.Location = new System.Drawing.Point(8, 88);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(280, 40);
			this.groupBox3.TabIndex = 4;
			this.groupBox3.TabStop = false;
			// 
			// numericUpDownSetNumber
			// 
			this.numericUpDownSetNumber.Location = new System.Drawing.Point(232, 16);
			this.numericUpDownSetNumber.Minimum = new System.Decimal(new int[] {
																				   1,
																				   0,
																				   0,
																				   0});
			this.numericUpDownSetNumber.Name = "numericUpDownSetNumber";
			this.numericUpDownSetNumber.Size = new System.Drawing.Size(40, 21);
			this.numericUpDownSetNumber.TabIndex = 1;
			this.numericUpDownSetNumber.Value = new System.Decimal(new int[] {
																				 1,
																				 0,
																				 0,
																				 0});
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(8, 16);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(224, 16);
			this.label2.TabIndex = 0;
			this.label2.Text = "How many clustering was performed?";
			// 
			// textBoxOpenFile
			// 
			this.textBoxOpenFile.Font = new System.Drawing.Font("Gulim", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(129)));
			this.textBoxOpenFile.Location = new System.Drawing.Point(8, 24);
			this.textBoxOpenFile.Name = "textBoxOpenFile";
			this.textBoxOpenFile.ReadOnly = true;
			this.textBoxOpenFile.Size = new System.Drawing.Size(224, 22);
			this.textBoxOpenFile.TabIndex = 5;
			this.textBoxOpenFile.Text = "";
			// 
			// buttonOpenFile
			// 
			this.buttonOpenFile.Location = new System.Drawing.Point(240, 24);
			this.buttonOpenFile.Name = "buttonOpenFile";
			this.buttonOpenFile.Size = new System.Drawing.Size(32, 23);
			this.buttonOpenFile.TabIndex = 7;
			this.buttonOpenFile.Text = "...";
			this.buttonOpenFile.Click += new System.EventHandler(this.buttonOpenFile_Click);
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.listViewRawData});
			this.tabPage1.Location = new System.Drawing.Point(4, 21);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Size = new System.Drawing.Size(480, 410);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "Raw 單撈磐";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜臀99久久精品久久久久久软件| 精品一区二区三区香蕉蜜桃| 在线综合亚洲欧美在线视频| 色噜噜久久综合| 成人伦理片在线| 亚洲精品亚洲人成人网在线播放| 欧美国产1区2区| 国产人成亚洲第一网站在线播放 | 成人av综合在线| 久久国产精品99精品国产| 亚洲aⅴ怡春院| 一区二区免费在线| 亚洲欧美成aⅴ人在线观看| 1000部国产精品成人观看| 中文字幕在线一区免费| 国产无人区一区二区三区| 日韩视频免费观看高清完整版在线观看 | www.66久久| 国产成+人+日韩+欧美+亚洲| 成+人+亚洲+综合天堂| 一本一道久久a久久精品| 欧日韩精品视频| 日韩午夜激情电影| 国产调教视频一区| 亚洲精品国产a| 视频一区二区不卡| 国产酒店精品激情| 色偷偷88欧美精品久久久| 7777精品伊人久久久大香线蕉完整版| 日韩欧美亚洲另类制服综合在线| 国产日韩亚洲欧美综合| 一区二区三区av电影| 免费看欧美美女黄的网站| 成人午夜短视频| 欧美三级中文字| 久久网这里都是精品| 中文字幕一区在线观看视频| 婷婷综合五月天| 成人精品电影在线观看| 欧美嫩在线观看| 久久精品亚洲麻豆av一区二区| 亚洲精品视频一区| 国产一区日韩二区欧美三区| 色综合天天综合| 欧美变态tickling挠脚心| 日韩一区中文字幕| 欧美a级理论片| 91一区二区在线观看| 5月丁香婷婷综合| 亚洲欧洲日韩在线| 美腿丝袜亚洲综合| 色系网站成人免费| www一区二区| 亚洲伊人伊色伊影伊综合网| 国产精品影视天天线| 欧美日韩精品欧美日韩精品| 亚洲国产精品国自产拍av| 五月天激情综合| 99精品热视频| 欧美成人精精品一区二区频| 一区二区三区91| 成人app网站| 久久这里都是精品| 日韩精品久久久久久| 一本大道久久精品懂色aⅴ| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | www.爱久久.com| 久久99九九99精品| 色妹子一区二区| 国产欧美日产一区| 麻豆精品久久久| 欧美日韩黄视频| 亚洲精品日韩一| 成人福利电影精品一区二区在线观看| 日韩精品最新网址| 日韩电影在线观看电影| 在线精品亚洲一区二区不卡| 国产精品毛片a∨一区二区三区| 精油按摩中文字幕久久| 91精品综合久久久久久| 一区二区三区在线免费视频| 成人精品视频网站| 日本一区二区三区在线不卡 | 678五月天丁香亚洲综合网| 亚洲女女做受ⅹxx高潮| 成人久久久精品乱码一区二区三区| 欧美一区二区日韩一区二区| 亚洲成人先锋电影| 欧美午夜免费电影| 亚洲欧洲www| 99热精品一区二区| 17c精品麻豆一区二区免费| 福利一区在线观看| 久久久精品免费免费| 国产精品原创巨作av| 亚洲精品在线免费播放| 久久国产综合精品| 亚洲精品一区二区三区蜜桃下载 | 国产在线不卡一区| 日韩欧美成人一区二区| 久久国产免费看| 欧美成人福利视频| 国内欧美视频一区二区| 久久久久99精品国产片| 国产一区 二区| 久久精品视频免费| 波多野结衣精品在线| 亚洲欧洲一区二区在线播放| 9色porny自拍视频一区二区| 国产精品成人免费在线| 在线一区二区三区| 污片在线观看一区二区| 欧美一卡2卡3卡4卡| 精品一区二区三区免费播放| 久久免费精品国产久精品久久久久| 国产福利一区二区| 自拍视频在线观看一区二区| 在线精品亚洲一区二区不卡| 亚洲成人免费视| 日韩一级黄色片| 国产成人精品亚洲午夜麻豆| 国产精品久久免费看| 在线亚洲+欧美+日本专区| 偷拍日韩校园综合在线| 久久综合五月天婷婷伊人| 久久伊99综合婷婷久久伊| 成年人网站91| 性做久久久久久久免费看| 欧美一级午夜免费电影| 国产精品123| 亚洲一区二区三区视频在线 | 国产精品人人做人人爽人人添 | 欧美国产视频在线| 色哟哟国产精品| 奇米四色…亚洲| 精品久久久久久久久久久久久久久| 国产精品九色蝌蚪自拍| 一区二区三区国产| 日韩高清在线不卡| 国产一区91精品张津瑜| gogogo免费视频观看亚洲一| 精品一区中文字幕| 亚洲3atv精品一区二区三区| 久久国产夜色精品鲁鲁99| 一本一本大道香蕉久在线精品| 天堂在线亚洲视频| 国产蜜臀97一区二区三区| 欧美三级日韩三级| 国产成人一区在线| 亚洲国产一二三| 欧美激情一区二区三区蜜桃视频| 欧美艳星brazzers| 国产激情一区二区三区四区| 一区二区视频免费在线观看| 日韩欧美在线一区二区三区| 99在线热播精品免费| 免费人成在线不卡| 国产精品不卡一区| 精品久久久久久久人人人人传媒 | 久久精品久久久精品美女| 国产精品电影一区二区三区| 日韩午夜在线观看| 99国产精品99久久久久久| 精品在线观看免费| 亚洲国产sm捆绑调教视频| 中文幕一区二区三区久久蜜桃| 91精品综合久久久久久| 色网站国产精品| 国产xxx精品视频大全| 天天综合网天天综合色| 亚洲手机成人高清视频| 久久一留热品黄| 日韩一区二区电影| 欧美性三三影院| 91免费在线视频观看| 国产成人午夜视频| 奇米一区二区三区av| 亚洲综合久久久久| 中文在线一区二区| 久久久综合九色合综国产精品| 欧美理论电影在线| 欧美性欧美巨大黑白大战| 91丨porny丨国产| 成人伦理片在线| 国产剧情av麻豆香蕉精品| 欧美一级片在线| 欧美日本在线播放| 欧美色图一区二区三区| 91啪亚洲精品| 91视频观看免费| 99麻豆久久久国产精品免费| 国产精品主播直播| 国产一区在线观看麻豆| 久久99深爱久久99精品| 久久狠狠亚洲综合| 麻豆精品精品国产自在97香蕉| 天天色综合天天| 视频一区二区三区在线| 亚洲18女电影在线观看| 婷婷激情综合网|