Share via


Menus Sample

This sample demonstrates the use of MenuStrip controls in Windows applications.

To get samples and instructions for installing them

  • Do one or more of the following:

    • On the Help menu, click Samples.

      The Readme displays information about samples.

    • Visit the Visual Studio 2008 Samples Web site. The most recent versions of samples are available there.

    • Locate samples on the computer on which Visual Studio is installed. By default, samples and a Readme file are installed in drive:\Program Files\Microsoft Visual Studio 9.0\Samples\lcid. For Express editions of Visual Studio, all samples are located online.

For more information, see Visual Studio Samples.

Security noteSecurity Note:

This sample code is intended to illustrate a concept, and it shows only the code that is relevant to that concept. It may not meet the security requirements for a specific environment, and it should not be used exactly as shown. We recommend that you add security and error-handling code to make your projects more secure and robust. Microsoft provides this sample code "AS IS" with no warranties.

To run this sample

  • Press F5.

Demonstrates

This sample allows you to test the MenuStrip control in a simple Windows application. The sample demonstrates several menu-strip features: controls, menu events, menu properties, handling multiple events, assigning event handlers to menu events, adding and removing objects from the menu strip at run time, displaying shortcuts, and using a StatusStrip as an indicator. The following list describes several features in more detail.

  • Shortcuts   Some menu items include shortcuts, such as the Options List menu on Form1. The ShowShortcutKeys property displays or hides this information on the menus. Using shortcut keys enhances the accessibility of an application.

  • StatusStrip control   The Status Strip item on the View menu uses a checked menu item to toggle the visibility of the StatusStrip control.

  • Checked list   The Checked List menu on the MainMenuStrip shows how to create a mutually exclusive collection of checked menu items. This is a collection where no two items in the set can be checked simultaneously. To see how this is done, see the MenuOption_Click event handler.

  • Adding menu items at run time   The CreateInitialMenus procedure shows how to create and add a ToolStripMenuItem, ToolStripSeparator, ToolStripComboBox, ToolStripButton, ToolStripSplitButton, or ToolStripLabel at run time. Use the DropDownItems property to add or remove items from the collection.

  • AddHandler   The CreateInitialMenus procedure uses AddHandler to assign event handlers to specific events for menu items that are created during execution.

See Also

Tasks

How to: Create a Basic Windows Forms ToolStrip with Standard Items Using the Designer

Concepts

ToolStrip Technology Summary

Reference

ToolStrip Control Overview (Windows Forms)

Other Resources

MenuStrip Control (Windows Forms)

ToolStrip Control (Windows Forms)

StatusStrip Control