Control.ContextMenu Property
Gets or sets the shortcut menu associated with the control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
[<BrowsableAttribute(false)>] abstract ContextMenu : ContextMenu with get, set [<BrowsableAttribute(false)>] override ContextMenu : ContextMenu with get, set
Property Value
Type: System.Windows.Forms.ContextMenuA ContextMenu that represents the shortcut menu associated with the control.
Use a shortcut menus to give context-specific menu options to users when they right-click on the control.
Notes to Inheritors:
When overriding the ContextMenu property in a derived class, use the base class's ContextMenu property to extend the base implementation. Otherwise, you must provide all the implementation. You are not required to override both the get and setaccessors of the ContextMenu property; you can override only one if needed.
The following code example displays the ContextMenu assigned to a TreeView when the right mouse button is clicked and released. This code requires that you have a Form with a TreeView on it. It is also required that the TreeView has a ContextMenu assigned to its ContextMenu property.
Available since 1.1