I am currently trying to make the WPF menu render vertically. I used the following code :
<Menu.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</Menu.ItemsPanel>
which is ok but I would like the submenus to show on left of each root menuitem. any pointers on how to do it ?