if I have an object say called MyObject, which has a property called MyChild, which itself has a property called Name. How can I get the value of that Name property if all I have is a binding path (i.e. “MyChild.Name”), and a reference to MyObject?
MyObject
-MyChild
-Name
I found a way to do this, but it’s quite ugly and probably not very fast… Basically, the idea is to create a binding with the given path and apply it to a property of a dependency object. That way, the binding does all the work of retrieving the value: