• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Delphi中用Webbrowser加载百度地图滚轮失效(ApplicationEvents里使用IsChild提前判断 ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

在Delphi中使用Webbrowser加载百度地图时,点击了其它界面,再回到百度地图中,即使点击了鼠标,再用滚轮也不能缩
放地图,除非点地图里面的自带的控件,之后才能缩放,原因是因为其它窗体控件获得焦点后没还回给Webbrowser.
目前的解决办法是在窗体上拖一个ApplicationEvents,在他的OnMessage事件中写入如下代码:

if IsChild(WebBrowser1.Handle, Msg.Hwnd) then begin // 使用API进行判断,第一个参数是父窗口,第二个参数是测试窗口
    if ((Msg.Message = WM_LBUTTONDOWN) or (Msg.Message = WM_LBUTTONUP))  then
    begin
      Webbrowser1.SetFocus;
     end;
end;

procedure SetFocusToDoc(Webbrowser:TWebBrowser);
begin
  if Webbrowser.Document <> nil then
  begin
    if IHTMLDocument2(WebBrowser1.Document).activeElement<>IHTMLDocument2(WebBrowser1.Document).body 

then
    begin
      with Webbrowser.Application as IOleobject do
      DoVerb(OLEIVERB_UIACTIVATE, nil, Webbrowser, 0, Handle, GetClientRect);
    end;
  end;

//  if Webbrowser.Document <> nil then
//  begin
//    with Webbrowser.Application as IOleobject do         //引用ActivitX
//      DoVerb(OLEIVERB_UIACTIVATE, nil, Webbrowser, 0, Handle, GetClientRect);
//  end;

//  if WebBrowser1.Document <> nil then
//  begin
//    if not IHTMLDocument4(WebBrowser1.Document).hasFocus then   //引用MSHTML单元
//      IHTMLWindow2(IHTMLDocument2(WebBrowser1.Document).ParentWindow).focus;
//  end;
//  if WebBrowser1.Document <> nil then
//  begin
//    if not IHTMLDocument4(WebBrowser1.Document).hasFocus then
//      IHTMLDocument4(WebBrowser1.Document).focus;
//  end;
end;

参考:http://m.blog.csdn.net/blog/fghydx/46122569


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[Caffe学习日志] 在Ubuntu14.04上安装MATLAB2014a并编译其接口发布时间:2022-07-18
下一篇:
图像线性对比度展宽,matlab实现发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap