Delphi TWebBrowser 设置焦点


本文整理自网络,侵删。

 
设置焦点 (当Webbrowser处于编辑模式) 
TWebBrowser非常特殊,它从TWinControl继承来的SetFocus方法并不能使得它所包含的文档获得焦点
//方法1
procedure TForm1.ToolButton1Click(Sender: TObject);
begin
   if Form1.WebBrowser1.Document <> nil then
     with WebBrowser1.Application as IOleobject do
        DoVerb(OLEIVERB_UIACTIVATE, nil, WebBrowser1, 0, Handle, GetClientRect());
end;
 
//方法2 Form1OnCreate事件无效
if WebBrowser1.Document <> nil then
    IHTMLWindow2(IHTMLDocument2(WebBrowser1.Document).ParentWindow).Focus();

相关阅读 >>

Delphi 10.3 控件遮挡 webbrowser

Delphi 获取与设置系统环境变量

Delphi xe5实现android 安卓 左侧或者右侧菜单功能

Delphi xe5 android openurl

Delphi 获取unixtime

Delphi 判断上午还是下午

Delphi 在firemonkey应用程序中使用torientationsensor获取设备倾斜和指南针航向

Delphi 字符串加单引号

Delphi raise 语句: 抛出异常

Delphi fmx 绘制非常精确的 时分秒针

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



打赏

取消

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

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

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

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

评论

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