如何将排序描述持久/应用于.Net C#ListViewCollection?

时间:2018-04-20 18:09:40

标签: c# .net wpf

我在我的应用程序中定义了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();

以上代码似乎不起作用。 实现这一目标的最佳方法是什么?

谢谢,约翰

0 个答案:

没有答案