This topic has not yet been rated - Rate this topic

WebBrowser.WebBrowserShortcutsEnabled Property

Gets or sets a value indicating whether keyboard shortcuts are enabled within the WebBrowser control.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
public bool WebBrowserShortcutsEnabled { get; set; }

Property Value

Type: System.Boolean
true if keyboard shortcuts are enabled within the control; otherwise, false. The default is true.

Set this property to false to prevent your users from using Internet Explorer keyboard shortcuts with the WebBrowser control. This is useful when you want to conceal the fact that you are using the WebBrowser control, for example to create a user interface that seamlessly combines DHTML-based controls with Windows Forms controls.

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

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


webBrowser1.WebBrowserShortcutsEnabled = false;


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
copy/paste shortcuts
Copy/paste shortcuts like Ctrl-C, Ctrl-X, Ctrl-V are also disabled if you set this to false. There should be a way to keep those enabled anyway, as they are really important for text input (just like Del).

Need to fix DEL key problem
Did any one get DEL key to work while WebBrowser.WebBrowserShortcutsEnabled=true ? $0$0 $0 $0Looks like a big glitch WebBrowser control for me.$0
Disables DEL key too.
This unfortunately also disables the DEL key.
Need a fix or a workaround.