Changeset 10710
- Timestamp:
- 04/02/14 14:42:28 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ManipulationView.Designer.cs
r10709 r10710 49 49 this.tabPreviewDeleteRowsInfo = new System.Windows.Forms.TabPage(); 50 50 this.tabPreviewShuffle = new System.Windows.Forms.TabPage(); 51 this.label8 = new System.Windows.Forms.Label();52 51 this.label9 = new System.Windows.Forms.Label(); 53 52 this.grpBoxData.SuspendLayout(); … … 182 181 // tabDataDeleteColumnsVariance 183 182 // 184 this.tabDataDeleteColumnsVariance.Controls.Add(this.label8);185 183 this.tabDataDeleteColumnsVariance.Controls.Add(this.txtDeleteColumnsVariance); 186 184 this.tabDataDeleteColumnsVariance.Controls.Add(this.label4); … … 195 193 // txtDeleteColumnsVariance 196 194 // 197 this.txtDeleteColumnsVariance.Location = new System.Drawing.Point(22 3, 0);195 this.txtDeleteColumnsVariance.Location = new System.Drawing.Point(226, 0); 198 196 this.txtDeleteColumnsVariance.Name = "txtDeleteColumnsVariance"; 199 197 this.txtDeleteColumnsVariance.Size = new System.Drawing.Size(135, 20); … … 206 204 this.label4.Location = new System.Drawing.Point(3, 3); 207 205 this.label4.Name = "label4"; 208 this.label4.Size = new System.Drawing.Size(21 4, 13);206 this.label4.Size = new System.Drawing.Size(217, 13); 209 207 this.label4.TabIndex = 3; 210 this.label4.Text = "Delete columns with a variance smaller than ";208 this.label4.Text = "Delete columns with a variance smaller than "; 211 209 // 212 210 // tabDataDeleteRowsInfo … … 338 336 this.tabPreviewShuffle.Text = "shuffle"; 339 337 this.tabPreviewShuffle.UseVisualStyleBackColor = true; 340 //341 // label8342 //343 this.label8.AutoSize = true;344 this.label8.Location = new System.Drawing.Point(364, 3);345 this.label8.Name = "label8";346 this.label8.Size = new System.Drawing.Size(89, 13);347 this.label8.TabIndex = 6;348 this.label8.Text = "% missing values.";349 338 // 350 339 // label9 … … 414 403 private System.Windows.Forms.TabPage tabPage1; 415 404 private System.Windows.Forms.Label label7; 416 private System.Windows.Forms.Label label8;417 405 private System.Windows.Forms.Label label9; 418 406 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ManipulationView.cs
r10709 r10710 64 64 65 65 private void lstMethods_SelectedIndexChanged(object sender, System.EventArgs e) { 66 66 67 int index = lstMethods.SelectedIndex; 67 68 tabsData.SelectedIndex = index + 1; … … 70 71 71 72 //in order that button will be enabled if text is already valid 72 73 validators[index](); 73 if (index >= 0) { 74 validators[index](); 75 } 74 76 } 75 77
Note: See TracChangeset
for help on using the changeset viewer.