NEW!
CSHTML5 has now become OpenSilver!

We are happy to announce that CSHTML5 has been significantly improved and rebranded to 'OpenSilver', which stands for 'Open-source reimplementation of Silverlight'. It is fully backward compatible and it can be downloaded from OpenSilver.net. Upgrading from CSHTML5 to OpenSilver is very easy.
Read the FAQ

Using Custom Fonts in your app

 

Note: this feature requires v1.1 or newer

 

Introduction

In a CSHTML5 application you can use 3 types of fonts:

  • "Web safe" browser fonts: those are fonts that are built into most browsers, so you can use them directly. The most common ones are: Arial, Helvetica, Times New Roman, Times, Courier New, Courier, Verdana, Georgia, Palatino, Garamond, Bookman, Comic Sans MS, Trebuchet MS, Arial Black, Impact

    Here is an example of use:
    <TextBlock FontFamily="Helvetica" Text="Hello World"/>
  • System fonts: those are fonts that may be present on the user's machine so you can attempt to use them directly, but you have no guarantee that they will display properly on all machines. A common example is "Segoe UI", which is bundled in recent versions of Windows but not older ones. If you choose to use such a font, it is recommended that you specify a "fallback" font in case that the font is not available. To do so, just provide a list of fonts separated by a comma.

    Here is an example of use, where we fallback to "Helvetica" if "Segoe UI" is not found:
    <TextBlock FontFamily="Segoe UI,Helvetica" Text="Hello World"/>
  • Custom fonts: those are fonts for which you must provide a ".ttf" or ".woff" file. Those types of files can be downloaded from online fonts galleries such as DaFont.com or Google Fonts. Those fonts get embedded/distributed with your application. The section below explains how to use custom fonts.

 

How to use custom fonts

Here is how to use custom fonts in a CSHTML5 application:

1. Add a ".ttf" or ".woff" font file to your CSHTML5 project. (You can download such a file from online fonts galleries such as DaFont.com or Google Fonts)

2. Set its "Build Action" to "Content". (To do so, select the font file in the Solution Explorer, press F4, and change the "Build Action" property)

3. Reference the font in your XAML using one of the two following syntaxes:

<TextBlock FontFamily="ms-appx:///AssemblyName/Folder/MyFontFileName.ttf" Text="Hello World"/>

or

<TextBlock FontFamily="/AssemblyName;component/Folder/MyFontFileName.ttf" Text="Hello World"/>

 

Notes

  • For best cross-browser compatibility, use .WOFF fonts (see the WOFF browser compatibility table).

    .TTF fonts do not work in Internet Explorer unless they are marked as "installable" (see the TTF browser compatibility table).
  • Fonts don't get previewed in the XAML editor.
  • The default font of a CSHTML5 application is defined in the file "cshtml5.css" and is equal to the following fallback chain:

       'Segoe UI', Verdana, 'DejaVu Sans', Lucida, 'MS Sans Serif', sans-serif;
  • If your font is used in multiple locations, you can declare a <FontFamily> element such as:

    <FontFamily x:Key="MyFontKey">ms-appx:///AssemblyName/Folder/MyFontFileName.ttf</FontFamily>

    You should declare it in a shared XAML location, such as the <App.Resources> section of the file "App.xaml", or a merged XAML resource dictionary.

    Then, you can reference it anywhere in your app using the "StaticResource" markupe extensions, like this:

    <TextBlock FontFamily="{StaticResource MyFontKey}" Text="Hello World"/>

 

Support

For any question, please post a message on the forums or contact us at support@cshtml5.com