Hello!
I'm creating menu using DataBing. For some reason RadMenuItem is wrapped with other menu item. Here is how my XAML looks like:
I'm creating menu using DataBing. For some reason RadMenuItem is wrapped with other menu item. Here is how my XAML looks like:
<telerikNavigation:RadMenuItem ItemsSource="{Binding SupportedThemes}" >
........
<telerikNavigation:RadMenuItem.ItemTemplate>
<DataTemplate>
<telerikNavigation:RadMenuItem
Header="{Binding DisplayName}"
Command="{Binding ChangeThemeCommand}"
CommandParameter="{Binding}"
/>
</DataTemplate>
</telerikNavigation:RadMenuItem.ItemTemplate>
What needs to be done order to get menu item look like static menu items? Is something special need to be added to templated?
I would like to pay your attention that suggested solution need to work in WPF.