Hi team
I have created sample with RadNavigationView, below this i have added list of items and those has been bind using itemsource property.
ItemSource type has two property 1st name as NameDisplay with type string and 2 nd as Icon with type string
Create style like below
<Style TargetType="telerik:RadNavigationViewItem">
<Setter Property="Content" Value="{Binding NameDisplay}" />
<Setter Property="Icon">
<Setter.Value>
<Image Source="{Binding Icon}" Height="25" Width="25" MinWidth="20" MinHeight="20" />
</Setter.Value>
</Setter>
<Style>
Output Image
Why the 1st icon is now showing after the render.
This is the behavior? if yes
Is there any alternate way to use our custom png icon under RadNavigationViewItem? without using glyph icon
Thanks
Narendran S