I have a problem with vertical line after Menu Items, guess it is some kind of separator between groups of menu items. I already tried to remove it for some time, but I have no idea where to find property to change it. I couldn't find any similar question in stackoverflow. Can anybody help with it?
Here is Xaml code and Image of line:
<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:my="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"
Height="350" Width="525">
<Grid>
<my:Ribbon>
<my:Ribbon.QuickAccessToolBar>
<my:RibbonQuickAccessToolBar>
<Menu>
<MenuItem Header="Sth" />
</Menu>
</my:RibbonQuickAccessToolBar>
</my:Ribbon.QuickAccessToolBar>
</my:Ribbon>
</Grid>
</Window>