views:

164

answers:

1

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 correct approach, to make filtering available for this BindingList.

tia Martin

A: 

Use ObservableCollection instead of BindingList

thefactor
I know that the ObservableCollection is the WPF class for this, but I cannot as I have to stick to some classes that already exist
Martin Moser