本文介绍了在Internet Explorer控制禁用上下文菜单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何禁用 web浏览器
控制在IE的右键菜单,而是在C#中执行右键单击事件的自定义操作?
How do I disable the context menu in the IE WebBrowser
control and instead perform custom handling of the right-click event in C#?
推荐答案
web浏览器的浏览器;
WebBrowser browser;
browser.Document.ContextMenuShowing += new HtmlElementEventHandler(MyCustomContextMenuMethod);
这篇关于在Internet Explorer控制禁用上下文菜单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!