ToolStripMenuItem.ShortcutKeys Property

Definition

Gets or sets the shortcut keys associated with the ToolStripMenuItem.

public:
 property System::Windows::Forms::Keys ShortcutKeys { System::Windows::Forms::Keys get(); void set(System::Windows::Forms::Keys value); };
public System.Windows.Forms.Keys ShortcutKeys { get; set; }
member this.ShortcutKeys : System.Windows.Forms.Keys with get, set
Public Property ShortcutKeys As Keys

Property Value

One of the Keys values. The default is None.

Exceptions

The property was not set to one of the Keys values.

Examples

The following code example demonstrates how to use the ShortcutKeys property to assign the key combination CTRL+P to a menu item called printToolStripMenuItem. For the complete example, see How to: Add Web Browser Capabilities to a Windows Forms Application.

printToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.P;
printToolStripMenuItem.ShortcutKeys = Keys.Control Or Keys.P

Remarks

Use the ShortcutKeys property to assign a key combination to a menu command, such as CTRL+C for the Copy command. You can use shortcut keys instead of or in addition to access keys, which are underscored letters in menus or menu items used with the ALT key. Define access keys in code by typing an ampersand (&) before the letter you want to use for an access key.

Applies to

See also