Dave Novo 52 Posted December 22, 2024 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 2026 Posted December 23, 2024 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 52 Posted December 23, 2024 ok, perfect, I got that working. thanks! Share this post Link to post