![Avatar](https://secure.gravatar.com/avatar/4615596a29d8a4534822ffc1b58fbb3d.jpg?s=64&d=identicon&r=g)
I didn't catch the CollectionChanged event of the IViewsCollection when I close a view.
It should raise with the Remove action no ?
MyRegionManager.Regions["Main"].Views.CollectionChanged +=new System.Collections.Specialized.NotifyCollectionChangedEventHandler(Views_CollectionChanged);
void Views_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
// this event should be thrown with e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Remove
}
Thanks for help.