Changeset 17118
- Timestamp:
- 07/08/19 17:38:12 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs ΒΆ
r17008 r17118 104 104 if (Content != null) { 105 105 Caption += " (" + Content.GetType().Name + ")"; 106 foreach (T item in Content )106 foreach (T item in Content.OrderBy(x => x.ToString())) 107 107 AddListViewItem(CreateListViewItem(item)); 108 108 AdjustListViewColumnSizes(); 109 SortItemsListView(SortOrder.Ascending);110 109 } 111 110 }
Note: See TracChangeset
for help on using the changeset viewer.