views:

149

answers:

1

I want to monitor changes to a CollectionView but the CollectionChanged event is protected. How should I do this? Surely there must be a way to subscribe to this event - the list controls must do this somehow.

I can cast SourceCollection to INotifyCollectionChanged and add an event there, but that seems unneccesarily messy.

+1  A: 

Why aren't you using an ObservableCollection instead?

Jason Watts
Because I am filtering the collection.
Groky
...and need CurrentItem functionality so CollectionView make sense.
Groky