New to Telerik UI for .NET MAUI? Start a free 30-day trial

Telerik UI for .NET MAUI Font Icons

Telerik font icons represent a collection of small vector graphics used across the components from the Telerik UI for .NET MAUI suite. Examples of using font icons include the expand and collapse indicators of the Accordion, Expander, and TreeView controls, filter and sort indicators of the DataGrid control, and others.

This article provides an overview of how you can utilize the Telerik font icons in your .NET MAUI app.

Include the Font Icons File

  1. The Telerik font icons are located in the telerikcontrolsicons.ttf and telerikfontexamples.ttf files. There are two options you could use to get the .ttf file.

    • Download the .ttf files from Telerik UI for .NET MAUI Samples App GitHub repo.
    • Get the font file from the installation folder of Telerik UI for MAUI. This is the path to the exact location: Telerik UI for .NET MAUI [version]\Examples\ControlsSamples\Resources\Fonts
  2. Add the font to your project by placing it in the Resources/Fonts folder.

  3. Register the Telerik font .ttf file into your .NET MAUI application inside the MauiProgram.cs file:

.ConfigureFonts(fonts =>
{
    fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
    fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
    fonts.AddFont("telerikcontrolsicons.ttf", "TelerikControlsIcons");
    fonts.AddFont("telerikfontexamples.ttf", "TelerikFontExamples");
});

Available Icons

See Also

In this article