How to implement filtering for BindingList and ICollectionView
Hi, I'm currently using a BindingList that is bound to a WPF-ItemsControl. As I need to implement some filtering on that list, I would like to take advantage of the filtering possibilities of ICollectionView. Unfortunately the straight-forward approach, returns false for CanFilter and CanCustomFilter. So I'm wondering what is the corre...