WebBrowser.IsWebBrowserContextMenuEnabled Property

Definition

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

public bool IsWebBrowserContextMenuEnabled { get; set; }

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;

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

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also