delphi 递归获取窗口所有子窗口所以句柄


本文整理自网络,侵删。

 

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Edit1: TEdit;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}
procedure GetChildWindows(h: HWND);
var
buf: array[0..255] of Char; {这个缓冲区是获取类名用的, 如果不需要可以删除}
begin
h := GetWindow(h, GW_CHILD); {第一个子窗口}
while h <> 0 do
begin
{下面两行是要执行的操作, 并假定只处理 TEdit}
GetClassName(h, buf, Length(buf));
//if buf = 'TEdit' then
ShowMessageFmt('%s:%d', [buf, h]);

h := GetWindow(h, GW_HWNDNEXT); {下一个子窗口}
GetChildWindows(h); {递归}
end;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
h:hwnd;
begin
h:=strtoint(edit1.Text);
GetChildWindows(h);


end;

end.

相关阅读 >>

Delphi sqlite incomplete input 错误

Delphi 服务端日志记录

Delphi获取系统字体列表

Delphi 泛型 tdictionary<string,string>

Delphi debug release区别是什么?

Delphi中webbrowser自动登录路由器网页

Delphi 获取webbrowser中的图片

Delphi unigui中cookies使用中文汉字的方法

Delphi 获取当前进程的父进程

Delphi 之 标签组件(tlabel组件)

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



打赏

取消

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

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

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

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

评论

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