Delphi中禁止WebBrowser右键的方法


本文整理自网络,侵删。

 uses MSHtml;

//在控件标签additional中找到TApplicationEvents控件,拖到窗体上.在TApplicationEvents的OnMessage事件中加入以下代码:

procedure TForm1.ApplicationEvents1Message(var Msg: tagMSG;
var Handled: Boolean);
begin
if (Msg.message = wm_rbuttondown) or (Msg.message = wm_rbuttonup) or
(msg.message = WM_RBUTTONDBLCLK) then
begin
if IsChild(Webbrowser1.Handle, Msg.hwnd) then
Handled := true;//如果有其他需要处理的,在这里加上你要处理的代码
end;
end;

相关阅读 >>

Delphi 获取鼠标当前位置的相对坐标

Delphi xe10 手机端错误提示:detected problems with api compatibility (visit g.co/dev/appcompat for more info

Delphi richedit的实现msn / qq 中的动画表情

Delphi fmx检查应用程序状态更改

Delphi 重启启动计算机的代码

Delphi 获取unigui 控件id 及获取html值

Delphi trim删除字符串首尾空格

Delphi android windows ios通用获取程序版本

Delphi ipnumberipv4

Delphi windows 编程[20] - 改变菜单项并换行

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...