Modify default source

Asked

Viewed 206 times

1

It is possible to modify the default font of my Windowsphone 8.1 application?

Because I do the font change, inside Visual Studio is the font I chose, but when I run on the device the font this is the standard.

   <HyperlinkButton Content="Teste" HorizontalAlignment="Left" Margin="126,299,0,0" VerticalAlignment="Top" FontWeight="Normal" FontSize="48" FontFamily="Pristina">
        ...

1 answer

1


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

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

There is also the possibility to include an "embed" font in the app using the . format Dirfont Filesource.ttf#Fontname

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.