How to listen to nested PropertyChanged events of Observable collection in Parent class #838
Unanswered
prabhavmehra
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Suppose I have a class A which extends
ObservableObject
which has an ObservableCollection. The ObservableCollection is of type ModelObservableCollection<Model>
.This model extends
ObservableObject
and has someObservableProperty
. When I edit any of the properties of an item I can see the change UI from the observable collection.Is there a way I can hook into the Property changes of any instance of Model class within the ObservableCollection in Class A?
So basically
Beta Was this translation helpful? Give feedback.
All reactions