I have a RibbonSpitButton with an ItemSource and an ItemTemplate defined in this way:
<RibbonSplitButton x:Name="SplitButton3DViews"
ItemsSource="{Binding items}"
Label="{String Views3D}"
IsCheckable="False">
<RibbonSplitButton.ItemTemplate>
<DataTemplate>
<RibbonMenuItem Header="{Binding Name}" ImageSource="{Binding Icon}" Command="{Binding cmd}"/>
</DataTemplate>
</RibbonSplitButton.ItemTemplate>
</RibbonSplitButton>
Everithing works but the graphical results is this:
How can I put icons of sub-items in the proper place (in the blue part of the menu)?