In WPF I'm trying to bind to a property of a readonly field in a static class, I've already looked at this which will allow to bind to const string in a static class like this
<TextBlock Text="{x:Static A:MyConstants.SomeConstantString}" />
What I'm trying to do is like this
<TextBlock Text="{x:Static A:MyConstants.SomeReadOnlyField.StringProp}" />
but it gives me an error
Nested types are not supported