I know how to handle a single objects property changed event very easily. I want to handle a objects property changed event that is part of another object.
Given Object
:
[ObjectY = Y]
+ Public WithEvents X As ObjectX
I would like to do something like:
Private Sub XPropertyChanged() Handles Y.X.PropertyChanged
Right now I need to create a object that equals the object inside that object and then handle this variable pointers property changed, but that is just annoying. Is there any way to do something similar to the above?