当前位置: 代码迷 >> Web前端 >> Delphi中禁止WebBrowser右键的步骤
  详细解决方案

Delphi中禁止WebBrowser右键的步骤

热度:117   发布时间:2013-03-22 09:49:50.0
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;

  相关解决方案