我在我的应用程序中定义了ListViewCollection。 ListViewCollection显示在WPF桌面应用程序的DataGrid中。 我想保存并重新应用排序说明。
以下是代码段:
var sortDescriptions = ItemsView.SortDescriptions;
// Do some stuff
ItemsView = new ListCollectionView(Items)
// Reapply the previous column sorts
ItemsView.SortDescriptions.AddRange(sortDescriptions);
ItemsView.Refresh();
以上代码似乎不起作用。 实现这一目标的最佳方法是什么?
谢谢,约翰