- Timestamp:
- 08/27/13 13:01:34 (11 years ago)
- Location:
- branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/CorrelationView.cs
r9911 r9912 104 104 RebuildCorrelationTable(); 105 105 } 106 }107 108 private void calculateCorrelation_Click(object sender, EventArgs e) {109 RebuildCorrelationTable();110 106 } 111 107 #endregion … … 224 220 stringConvertibleMatrixView.Content = dt; 225 221 } 222 223 private void resultComboBox_SelectedIndexChanged(object sender, EventArgs e) { 224 RebuildCorrelationTable(); 225 } 226 226 } 227 227 } -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/CorrelationView.designer.cs
r9759 r9912 48 48 this.label1 = new System.Windows.Forms.Label(); 49 49 this.resultComboBox = new System.Windows.Forms.ComboBox(); 50 this.calculateCorrelation = new System.Windows.Forms.Button();51 50 this.SuspendLayout(); 52 51 // … … 63 62 this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = true; 64 63 this.stringConvertibleMatrixView.ShowStatisticalInformation = true; 65 this.stringConvertibleMatrixView.Size = new System.Drawing.Size(492, 3 23);64 this.stringConvertibleMatrixView.Size = new System.Drawing.Size(492, 352); 66 65 this.stringConvertibleMatrixView.TabIndex = 0; 67 66 // … … 71 70 this.label1.Location = new System.Drawing.Point(5, 6); 72 71 this.label1.Name = "label1"; 73 this.label1.Size = new System.Drawing.Size( 40, 13);72 this.label1.Size = new System.Drawing.Size(37, 13); 74 73 this.label1.TabIndex = 6; 75 74 this.label1.Text = "Value:"; … … 77 76 // resultComboBox 78 77 // 79 this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 78 this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 80 79 | System.Windows.Forms.AnchorStyles.Right))); 81 80 this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 85 84 this.resultComboBox.Size = new System.Drawing.Size(424, 21); 86 85 this.resultComboBox.TabIndex = 5; 86 this.resultComboBox.SelectedIndexChanged += new System.EventHandler(this.resultComboBox_SelectedIndexChanged); 87 87 // 88 // calculateCorrelation88 // CorrelationView 89 89 // 90 this.calculateCorrelation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));91 this.calculateCorrelation.Location = new System.Drawing.Point(310, 359);92 this.calculateCorrelation.Name = "calculateCorrelation";93 this.calculateCorrelation.Size = new System.Drawing.Size(185, 23);94 this.calculateCorrelation.TabIndex = 9;95 this.calculateCorrelation.Text = "Calculate correlation coefficients";96 this.calculateCorrelation.UseVisualStyleBackColor = true;97 this.calculateCorrelation.Click += new System.EventHandler(this.calculateCorrelation_Click);98 //99 // ResultCorrelationView100 //101 this.Controls.Add(this.calculateCorrelation);102 90 this.Controls.Add(this.label1); 103 91 this.Controls.Add(this.resultComboBox); … … 114 102 private System.Windows.Forms.Label label1; 115 103 private System.Windows.Forms.ComboBox resultComboBox; 116 private System.Windows.Forms.Button calculateCorrelation;117 104 } 118 105 } -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/InfoBox.Designer.cs
r9759 r9912 66 66 | System.Windows.Forms.AnchorStyles.Left) 67 67 | System.Windows.Forms.AnchorStyles.Right))); 68 this.infoRichTextBox.BackColor = System.Drawing.SystemColors. Info;68 this.infoRichTextBox.BackColor = System.Drawing.SystemColors.Control; 69 69 this.infoRichTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; 70 70 this.infoRichTextBox.Location = new System.Drawing.Point(12, 12);
Note: See TracChangeset
for help on using the changeset viewer.