Basically I try to follow the example :
http://docs.telerik.com/devtools/wpf/controls/radchart/how-to/howto-integration-radcontextmenu-wpf
I use an ItemTemplate not to see the base class used for dynamic item
<telerik:RadContextMenu x:Name="RadContextMenu"
ItemTemplate="{StaticResource MenuItemTemplate}"
ItemClick="OnContextMenuClick">
defined like this
HierarchicalDataTemplate x:Key="MenuItemTemplate"
DataType="{x:Type local:ContextMenuItem}"
ItemsSource="{Binding Items}">
<TextBlock Text="{Binding Text}" />
</HierarchicalDataTemplate>
I have a problem applying the <telerik:RadContextMenu.ItemContainerStyle> : the menu disappears.
In the attached example, I can see the context menu when no style is applied but I can not apply the settings like separator item.
How can I have this example working with Telerik 2016.3.1024.45.NoXaml ?