I have a WPF Datagrid with custom sorting implemented and it works fine. I need to lock some of the records in the collection to Top and Bottom (Top Lock and Bottom Lock). So when a particular record is Top locked, it should be the first record in the collection regardless of any value for the selected column(ie I don't want to sort those rows which are Top locked and Bottom locked). Here is my custom sort method.
private void PerformLineCustomSort(DataGridColumn column)
{
ListSortDirection direction = (column.SortDirection != ListSortDirection.Ascending) ? ListSortDirection.Ascending : ListSortDirection.Descending;
column.SortDirection = direction;
ListCollectionView listCollectionView = (ListCollectionView)CollectionViewSource.GetDefaultView(Lines);
LineSorter lineSort = new LineSorter(direction, column);
listCollectionView.CustomSort = lineSort;
}
where LineSorter is my custom sorter class with IComparer implementation. This works fine. Now I want to apply Top lock and Bottom lock to the ListCollectionView. I have tried the following code with the above, but it doesn't have any change(ie list is sorted based on only the custom sort column).
listCollectionView.SortDescriptions.Add(new SortDescription("TopLock", ListSortDirection.Descending));
listCollectionView.SortDescriptions.Add(new SortDescription("BotLock", ListSortDirection.Ascending));
Is there any way do this scenario or do I need to manually remove and then add the locked records. Please suggest..
LineSorter.Compare()implementation to always return top-locked items as being less than other items, and bottom-locked items as being greater than other items. I'm assuming there's a reason you can't do this though? – Tim Rogers Feb 26 at 8:59