Hello,
How to store font family as a static resource so that it can be used globally.
Thanks in advance.
This works for me :
<FontFamily x:Key="MyTheme">Cambria</FontFamily>
Usage :
<TextBlock Text="Hello" FontFamily="{StaticResource MyTheme}" FontSize="48"></TextBlock>
Thanks Sagar.
Actually VS is not showing FontFamily in Intellisense, I paste it in and it's works Fine!