bindlinglist

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...

How to return a Readonly BindingList

I have an existing class that has a List and I need to change this List to a BindingList but the class has a property that return a ReadOnlyCollection of this list. This is important that this list can only be modified inside this class. Now I have to change this List to a BindingList so I can get notified in another class when the lis...