How to: Disable ToolStripMenuItems Using the Designer

You can limit or broaden the commands a user may make by enabling and disabling menu items in response to user activities. Menu items are enabled by default when they are created, but this can be adjusted through the Enabled property. You can manipulate this property at design time in the Properties window or programmatically by setting it in code. For more information, see How to: Disable ToolStripMenuItems.

To disable a menu item at design time

  1. With the menu item selected on the form, set the Enabled property to false.

    Tip

    Disabling the first or top-level menu item in a menu disables all the menu items contained within the menu. Likewise, disabling a menu item that has submenu items disables the submenu items. If all the commands on a given menu are unavailable to the user, it is considered good programming practice to both hide and disable the entire menu, as this presents a clean user interface. You should both hide and disable the menu, as hiding alone does not prevent access to a menu command via a shortcut key. Set the Visible property of a top-level menu item to false to hide the entire menu.

See also