Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我将我的 WPF DataGrid 绑定到 ViewModel 中的 ObservableCollection(这是一项要求),我如何实现分组、过滤和导航,如果 DataGrid 绑定到 CollectionView 可以直接完成。是否有可能同时获得两种类型的集合的好处?
您可以使用CollectionViewSource.GetDefaultViewViewModel 内部的方法,以便您可以访问 Collection View 的 SortDescription、GroupDescription 和 Filter 属性
CollectionViewSource.GetDefaultView
用法
var cv = (ListCollectionView)CollectionViewSource.GetDefaultView(this.Customers);