- Timestamp:
- 01/15/14 16:47:23 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.cs
r10317 r10345 6 6 using HeuristicLab.Problems.DataAnalysis; 7 7 using HeuristicLab.Data.Views; 8 using System.Collections.Generic; 9 using System.Linq; 8 10 9 11 namespace HeuristicLab.DataPreprocessing { … … 46 48 OnContentChanged(); 47 49 } 50 51 protected override int[] Sort(IEnumerable<KeyValuePair<int, SortOrder>> sortedColumns) { 52 btnApplySort.Enabled = sortedColumns.Any(); 53 return base.Sort(sortedColumns); 54 } 55 56 protected override void ClearSorting() { 57 btnApplySort.Enabled = false; 58 base.ClearSorting(); 59 } 48 60 } 49 61 }
Note: See TracChangeset
for help on using the changeset viewer.