Content Model: MenuItem is a HeaderedItemsControl. Its content properties are Items and ItemsSource and its header property is Header. For more information on the content model for MenuItem, see Controls Content Model Overview.
A MenuItem can have submenus. The submenu of the MenuItem is made up of the objects within the ItemCollection of a MenuItem. It is common for a MenuItem to contain other MenuItem objects to create nested submenus.
A MenuItem can have one of several functions:
It can be selected to invoke a command.
It can be a separator for other menu items.
It can be a header for a submenu.
It can be checked or unchecked.
The MenuItem handles the MouseDown event, so if you attach an event handler to MouseDown, your handler will never be called. To add your own handler, subscribe to the PreviewMouseDown event or subscribe to MouseDown by calling AddHandler(RoutedEvent, Delegate, Boolean) with handledEventsToo set to true.