Modify default font

1

Is it possible to modify the default font of my WindowsPhone 8.1 application?

   <HyperlinkButton Content="Teste" HorizontalAlignment="Left" Margin="126,299,0,0" VerticalAlignment="Top" FontWeight="Normal" FontSize="48" FontFamily="Pristina">
        ...
    
asked by anonymous 16.07.2014 / 04:29

1 answer

1

Only some UI Fonts are supported directly on windows phone, and the availability of each font depends on which display languages are included in the device.

Windows Phone Fonts - in this link there is a table detailing which fonts are supported

You can also include a font "embed" in the app using the format. \ DirFonte \ SourceFile.ttf # SourceName

<HyperlinkButton Content="Teste" HorizontalAlignment="Left" Margin="126,299,0,0" VerticalAlignment="Top" FontSize="48" FontFamily="/Fonts/Comic.ttf#Comic">
    
12.09.2014 / 14:32