- Timestamp:
- 04/09/14 12:45:55 (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/ComparisonFilterView.cs
r10713 r10735 87 87 this.cbAttr.SelectedItem = this.cbAttr.Items[Content.ConstraintColumn]; 88 88 89 if (Content.ConstraintColumn != null)90 {89 //if (Content.ConstraintColumn != null) 90 //{ 91 91 cbAttr.SelectedItem = Content.ConstraintColumn; 92 92 if (Content.ConstraintData != null) … … 94 94 else 95 95 this.Content_ConstraintColumnChanged(cbAttr, EventArgs.Empty); 96 }96 //} 97 97 } 98 98 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs
r10709 r10735 54 54 var filterLogic = new FilterLogic(data); 55 55 56 57 56 58 var viewShortcuts = new ItemCollection<IViewShortcut>() { 57 59 new DataGridContent(dataGridLogic, manipulationLogic, filterLogic), … … 65 67 66 68 viewShortcutCollectionView.Content = viewShortcuts.AsReadOnly(); 69 70 viewShortcutCollectionView.ItemsListView.Items[0].Selected = true; 71 viewShortcutCollectionView.Select(); 72 67 73 } else { 68 74 viewShortcutCollectionView.Content = null;
Note: See TracChangeset
for help on using the changeset viewer.