Dave Novo 51 Posted Sunday at 10:31 PM 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 2019 Posted yesterday at 02:18 AM 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
Dave Novo 51 Posted yesterday at 05:09 PM ok, perfect, I got that working. thanks! Share this post Link to post