I have my custom grid which inherits from DataGrid (from WPFToolkit) that has around 10000 items in it. The built-in sort is very slow. As such I have written a separate class that keeps a running sort of all the DataRowView items for each column (this works because additions and removals from the grid are extremely seldom, if ever).
The grid has AutoGenerateColumns='True' and is bound to the DefaultView of a DataTable.
I override the OnSorting to know when a column header is clicked and try to replace the ItemsSource of the grid with my sorted list of DataRowView. Below is the method:
private void RefreshItems()
{
if (_updating || _multiIndexer.Count == 0)
return;
try
{
_updating = true;
this.AutoGenerateColumns = false;
// replace the itemssource with my maintained and sorted list of
// DataRowView items
this.ItemsSource = _multiIndexer.ToList();
}
finally
{
//this.AutoGenerateColumns = true;
_updating = false;
}
}
The problem is that I destroy the columns that existed from the auto-generation. Also, I'm only left with columns that match the properties from DataRowView.
I believe the best approach would be to create a DataView from my sorted list of DataRowView and pass that to the ItemsSource but I have yet to have any success.
Any ideas how to pass a new list of rows to the ItemsSource or Items without destroying the auto-generated columns? Generating all my columns manually is not an option.
Cheers, Sean