Dave Novo 51 Posted 13 hours ago Is there an example anywhere of properly hooking up events to a newly created Observable list in order to be notified if items are added/removed to from the list Share this post Link to post
Stefan Glienke 2018 Posted 9 hours ago All collections have events for getting notified of addition/removal via the OnChanged event - observable lists are something different. On those if the objects implement INotifyPropertyChanged they communicate to the list that a property has changed so the list then gets caChanged from those items. Share this post Link to post