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.
ViewModel で ObservableCollection に WPF DataGrid をバインドしている場合 (必須)、DataGrid が CollectionView にバインドされている場合に直接実行できるグループ化、フィルタリング、およびナビゲーションを実装するにはどうすればよいですか。両方のタイプのコレクションの利点を同時に得ることは可能ですか?
CollectionViewSource.GetDefaultViewコレクション ビューの SortDescription、GroupDescription、および Filter プロパティにアクセスできるように、ViewModel 内でメソッドを使用できます。
CollectionViewSource.GetDefaultView
使用法
var cv = (ListCollectionView)CollectionViewSource.GetDefaultView(this.Customers);