Telerik UI for .NET MAUI Controls Icons
You can choose any of the available Telerik font icons:
Icon | XAML | Code | Icon | XAML | Code | Icon | XAML | Code |
---|---|---|---|---|---|---|---|---|
Accordion |  | \ue800 | AutoComplete |  | \ue801 | BadgeView |  | \ue802 |
Barcode |  | \ue803 | Border |  | \ue804 | BusyIndicator |  | \ue805 |
Button |  | \ue806 | Calendar |  | \ue807 | Bar Chart |  | \ue808 |
Financial Chart |  | \ue809 | Line Chart |  | \ue80b | FinancialIndicator Chart |  | \ue80a |
Chart with Null Values |  | \ue80c | Pie Chart |  | \ue80d | Scatter Chart |  | \ue80e |
Chat |  | \ue80f | CheckBox |  | \ue810 | ComboBox |  | \ue811 |
DataForm |  | \ue812 | DataGrid |  | \ue813 | DatePicker |  | \ue814 |
DateTimePicker |  | \ue815 | DockLayout |  | \ue816 | Entry |  | \ue817 |
Expander |  | \ue818 | Gauge |  | \ue819 | ImageEditor |  | \ue81a |
ListPicker |  | \ue81c | ItemsControl |  | \ue81b | Map |  | \ue81e |
MaskedEntry |  | \ue81f | NavigationView |  | \ue820 | NumericInput |  | \ue821 |
Path |  | \ue822 | PdfProcessing |  | \ue823 | PdfViewer |  | \ue824 |
Popup |  | \ue825 | ProgressBar |  | \ue826 | RangeSlider |  | \ue827 |
Rating |  | \ue828 | RichTextEditor |  | \ue829 | Scheduler |  | \ue82a |
SegmentedControl |  | \ue82b | SideDrawer |  | \ue82c | SignaturePad |  | \ue82d |
SlideView |  | \ue82e | SpreadStreamProcessing |  | \ue82f | TabView |  | \ue830 |
TemplatedPicker |  | \ue831 | TimePicker |  | \ue832 | TimeSpanPicker |  | \ue833 |
Toolbar |  | \ue834 | TreeView |  | \ue835 | WordsProcessing |  | \ue836 |
WrapLayout |  | \ue837 | ZipLibrary |  | \ue838 | Hamburger Menu |  | \ue839 |
Home |  | \ue83a | Search |  | \ue83b | Configuration |  | \ue83c |
Customization |  | \ue83d | CollectionView |  | \ue83f | Area Chart |  | \ue840 |
Slider |  | \ue83e | AI Prompt |  | \ue841 | ListView |  | \ue81d |
You need to set the Telerik controls font icon code on the concrete property to visualize the icon.
Examples
This example shows how to add the font icons code to a Label
. You need to add the icon code to the Label.Text
property and set the FontFamily
:
<Label Text="" FontFamily="TelerikControlsIcons"/>
var label = new Label
{
Text = "\ue800",
FontFamily = "TelerikControlsIcons"
};
The
FontFamily
name is the name of the font registered in theMauiProgram.cs
file.