I want to define some resources in my App.Xaml for fontsize.
This type of thing will work:
<sys:Double x:Key="FontLarge">24</sys:Double>
But I want to get the value from a :xStatic so something like this:
<sys:Double x:Key="FontLarge">{x:Static local:Settings.FontLarge</sys:Double>
or
<sys:Double x:Key="FontLarge" Value="{x:Static local:Settings.FontLarge"></sys:Double>
Neither of these work though. Is this possible and what would be the syntax?