Is there a way to create a Binding from a Expression rather than having to hardcode the name of the Property?
Normally you do:
new Binding("MyPropertyName")
Is there a way, part of the Framework, that you could do instead, something like:
new Binding(x=> x.MyPropertyName)
Does the Framework offer this feature?
xis in your example. You would need something likenew Binding(MyThing x=> x.MyPropertyName)for it to work at all. I don't think this directly exists, but you could easily create a helper function to do it.