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设计循环播放声音文件程序

Delphi indy 组件包里的 idhttp 组件使用 get 方法下载文件限速的方法

Delphi ado通用操作数据单元

Delphi实现文件拖放代码

Delphi tnethttpclient上传文件

Delphi xe6 使用intent启动活动并在android应用程序中获取返回值的示例

Delphi 打开webbrowser的选中文件路径

Delphi ini 文件操作记要: 使用 tmeminifile

Delphi窗体置顶

Delphi 通过u盘方式加密

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



打赏

取消

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

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

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

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

评论

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