Icon and IconTemplate
The RadNavigationViewItem allows you to display a custom icon in its template. To show an icon, you can use either the Icon, or the IconTemplate properties.
Icon
Since the Icon property is of type object, you can set it to an image, glyph or any custom control. Example 1 demonstrates how you can set the Icon of RadNavigationViewItem to a RadGlyph.
Example 1: Setting the Icon of a RadNavigationViewItem
Figure 1: Result from Example 1 in the Office2016 theme
IconTemplate
The IconTemplate property is useful, because a single DataTemplate can be set to many RadNavigationViewItems. This section will demonstrate how this property can be used in a databinding scenario.
Note that whatever is set to the Icon property will be the DataContext inside the IconTemplate.
First we will define a model for our items and a viewmodel which will hold a collection of those models. This is demonstrated in Example 2.
Example 2: Defining a model and a viewmodel
After that we can setup our RadNavigationView and set its ItemsSource to an instance of our viewmodel. We also need to create a style targeting RadNavigationViewItem in order to bind the properties of the NavigationItemModel class. Note, that a StringToGlyphConverter is used to convert the IconGlyph string property to a glyph.
Example 3: Setting up the view
Figure 2: Result from Example 3 in the Office2016 theme
For a more extensive databinding example check out the DataBinding article.
IconTemplateSelector
RadNavigationViewItem exposes an IconTemplateSelector property which allows you to specify a different datatemplate based on the value of the Icon property. For example, you may display the icons by using multiple font families as shown in Examples 4 and 5. The examples demonstrate how to switch between the TelerikWebUI and Wingdings fonts.
For the purposes of this example, let's assume that the last string of the glyphStrings array from Example 2 is changed to ü.
Example 4: Defining the IconTemplateSelector
Example 5: Using the IconTemplateSelector in XAML
Figure 3: Result from Example 5 in the Office2016 theme
Icon Visibility
To show or hide the icon of RadNaviationViewItem, set its IconVisibility property.