wpf 禁用启用webbroswer右键菜单
Posted 骑着金猪看日出
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf 禁用启用webbroswer右键菜单相关的知识,希望对你有一定的参考价值。
//禁用脚本错误等类似的窗口信息 this.webBrowser1.ScriptErrorsSuppressed = true; //禁用右键菜单 this.webBrowser1.IsWebBrowserContextMenuEnabled = false; //禁用键盘快捷键 this.webBrowser1.WebBrowserShortcutsEnabled = false; //打开IE打印机会话框 this.webBrowser1.ShowPrintDialog(); //打开IE的打印预览会话框 this.webBrowser1.ShowPrintPreviewDialog(); //打开IE的保存 会话框 this.webBrowser1.ShowSaveAsDialog();
以上是关于wpf 禁用启用webbroswer右键菜单的主要内容,如果未能解决你的问题,请参考以下文章