Suppose the object I'm binding to has a property with a string representing the ResourceKey - how do I get a StaticResource to dynamically acquire it's ResourceKey based on a binding to the underlying object?
I want something equivalent to this
MyProperty="{StaticResource ResourceKey={Binding Path=MyProperty}}"
While this compiles, it will fail complaining it can't find a key of type System.Windows.Data.Binding
I don't need dynamic re-evaluation if the underlying value changes (eg DynamicResource)