I have a simple Menu in a DockPanel. Here is the XAML:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<DockPanel>
<Menu DockPanel.Dock="Top">
<MenuItem Name="file" Header="_File">
<MenuItem Name="exitMenuItem" Header="E_xit"/>
</MenuItem>
</Menu>
<Grid>
</Grid>
</DockPanel>
Why does the Menu drop down to the left instead of the right of the window border like most applications?
It appears that you have a tablet input device. Follow the instructions in this link to change the handedness in your Tablet PC Settings:
A fix that worked for me was:
Credit: https://www.telerik.com/forums/popup-is-opening-to-outside-window-in-splitbutton