WebBrowser.WebBrowserShortcutsEnabled 属性

定义

获取或设置一个值,该值指示 WebBrowser 控件中是否启用了键盘快捷键。

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

属性值

如果控件中启用了键盘快捷键,则为 true;否则为 false。 默认值为 true

示例

下面的代码示例演示如何使用 WebBrowserShortcutsEnabled 属性。

webBrowser1.WebBrowserShortcutsEnabled = false;
webBrowser1.WebBrowserShortcutsEnabled = False

注解

将此属性设置为 false 可阻止用户对 控件使用 Internet Explorer 键盘快捷方式 WebBrowser 。 如果要隐瞒正在使用WebBrowser控件的事实,例如创建一个用户界面,将基于 DHTML 的控件与Windows 窗体控件无缝结合,这非常有用。

可以通过将 和 IsWebBrowserContextMenuEnabled 属性设置为 AllowWebBrowserDropfalse来禁用其他标准浏览器功能。

适用于

另请参阅