New to Telerik UI for .NET MAUIStart a free 30-day trial

Using Font Icons in Telerik UI for .NET MAUI

Updated on Sep 24, 2025

Environment

VersionProductAuthor
6.7.0Telerik UI for .NET MAUI Font IconsDobrinka Yordanova

Description

How can I use font icons in Telerik UI for .NET MAUI, and where can I find the complete list of available font icons?

Solution

To use font icons in your Telerik UI for .NET MAUI application, follow these steps:

  1. Download the font file.

  2. Add the font to your project by placing it in the Resources/Fonts folder.

  3. Register the font in the MauiProgram.cs file:

csharp
.ConfigureFonts(fonts =>
{
    fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
    fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
    fonts.AddFont("telerikfontexamples.ttf", "TelerikFontExamples");
});
  1. Consume the font icon in your XAML:
xaml
<Label Text="&#xE80A;" FontFamily="TelerikFontExamples" FontSize="Micro" FontAttributes="Bold" TextColor="Black" />

To find the complete list of available font icons, you can use an extension such as the iconfont-preview extension for Visual Studio Code.

See Also