I have a hierarchy of objects (objects A, B), each of which implements INotifyPropertyChanged
such that...
A has a member of type B, B has a member of C, C is of type bool
When C changes, its PropertyChanged
event gets fired, however this does not fire B's property changed event. And therefore A does not react to B's change.
Is there a good way to bubble this up?