So I have added a "Menu" item to my program and though properties:
IsEnabled: (is checked)
visibility: Visible
And my .xaml shows:
<Grid>
<Menu Height="26" HorizontalAlignment="Left" Margin="-1,0,0,0" Name="menu1" VerticalAlignment="Top" Width="504" Opacity="88">
<MenuItem Header="_Menu"/>
<MenuItem Header="_View"/>
<MenuItem Header="_Edit"/>
</Menu>
</Grid>
When I debug the program the "Menu" or any of the MenuItems does not show up on the Active Windows Form.
Any thoughts?