Bearbeiten

WebBrowser.IsWebBrowserContextMenuEnabled Property

Definition

Gets or a sets a value indicating whether the shortcut menu of the WebBrowser control is enabled.

public:
 property bool IsWebBrowserContextMenuEnabled { bool get(); void set(bool value); };
public bool IsWebBrowserContextMenuEnabled { get; set; }
member this.IsWebBrowserContextMenuEnabled : bool with get, set
Public Property IsWebBrowserContextMenuEnabled As Boolean

Property Value

true if the WebBrowser control shortcut menu is enabled; otherwise, false. The default is true.

Examples

The following code example demonstrates how to use the IsWebBrowserContextMenuEnabled property.

webBrowser1.IsWebBrowserContextMenuEnabled = false;
webBrowser1.IsWebBrowserContextMenuEnabled = False

Remarks

By default, the WebBrowser control displays a shortcut menu when a user right-clicks it. This behavior is useful when you use the control as a generic browser. If you want to conceal the fact that you are using the WebBrowser control, for example to create a user interface that seamlessly combines Web-based controls with Windows Forms controls, set the IsWebBrowserContextMenuEnabled property to false.

You can disable other standard browser features by setting the AllowWebBrowserDrop and WebBrowserShortcutsEnabled properties to false.

Applies to

See also