- Timestamp:
- 05/28/14 11:37:16 (10 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs
r10538 r10899 58 58 } 59 59 60 private SortOrder sorting = SortOrder.Ascending; 61 public SortOrder Sorting { 62 get { return sorting; } 63 set { sorting = value; } 64 } 65 60 66 public ItemCollectionView() { 61 67 InitializeComponent(); … … 106 112 AddListViewItem(CreateListViewItem(item)); 107 113 AdjustListViewColumnSizes(); 108 SortItemsListView(SortOrder.Ascending); 114 if (Sorting != SortOrder.None) 115 SortItemsListView(Sorting); 109 116 } 110 117 } … … 140 147 try { 141 148 return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType(); 142 } 143 catch (Exception ex) { 149 } catch (Exception ex) { 144 150 ErrorHandling.ShowErrorDialog(this, ex); 145 151 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/CheckedTransformationCollectionView.cs
r10806 r10899 39 39 InitializeComponent(); 40 40 itemsGroupBox.Text = "Transformations"; 41 Sorting = SortOrder.None; 41 42 } 42 43
Note: See TracChangeset
for help on using the changeset viewer.