vote up 1 vote down star
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.

flag

64% accept rate
Well, apparently it was intentionally "hidden" from public access... I don't know why exactly, but what you're trying to do is probably the exact thing they wanted to prevent ;) – Thomas Levesque Jun 11 at 23:26

1 Answer

vote up 1 vote down

Why aren't you using an ObservableCollection instead?

link|flag
Because I am filtering the collection. – Groky Jun 11 at 23:49
...and need CurrentItem functionality so CollectionView make sense. – Groky Jun 11 at 23:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.