吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 869|回复: 1
收起左侧

[求助] 如何 解决 内嵌的窗口 没有焦点问题?

[复制链接]
冥界3大法王 发表于 2021-1-18 16:07
[Delphi] 纯文本查看 复制代码
procedure TForm2.Button1Click(Sender: TObject);
var
  h: HWnd;
  p: array[0..254] of char;
begin
  h := GetWindow(Handle, GW_HWNDFIRST);
  while h <> 0 do
  begin
    GetClassName(h, p, Length(p));
    if p = Keyword3 then                    //如果窗口类名=.INI窗口标题对应的类名
    begin
      GetWindowText(h, p, Length(p));      //那就得到其窗口标题
     //  showmessage(p);
      Clipboard.AsText := p;
    end;
    h := GetWindow(h, GW_HWNDNEXT);
  end;

  h := FindWindow(nil, PWideChar(Clipboard.AsText));    // 这里再把p分配给找窗口
  if h <> 0 then
  begin
    Winapi.Windows.SetParent(h, Self.Scite.Handle);
    Winapi.Windows.MoveWindow(h, 0, 0, Self.Scite.Width, Self.Scite.Height, True);
    SetWindowLong(h, GWL_STYLE, GetWindowLong(h, GWL_STYLE) and (not WS_CAPTION) and (not WS_BORDER) and (not WS_THICKFRAME));         //去除窗口标题栏!
  end
  else
    ShowMessage('程序未运行,请点【顶部齿轮图标】重新配置!');
end;

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

ying656 发表于 2021-1-18 18:45
应该是学习框架机制及原理,我也不懂这个,目前解决办法 找图
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-1-16 18:03

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表