收集所有活动窗口类名称

发布于 2024-11-29 20:16:10 字数 206 浏览 0 评论 0原文

许多程序(True Transparancy 等)都可以获取所有活动或在后台运行的窗口类名称,如下所示:

Delphi 7 对象检查器名称为 tpropertyinspector
Opera 主窗口类名为 operawindowclass
呢?

那么如何在Delphi中获取任何打开的窗口类名

Many programs (True Transparancy and others) can get all active or running in background window class names like this one:

Delphi 7 Object Inspector name is tpropertyinspector

Opera main window class name is operawindowclass
etc.

So how to get any opened window class name in Delphi?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

弱骨蛰伏 2024-12-06 20:16:10

调用EnumWindows来获取所有顶级窗口。然后调用GetClassName来找出每个窗口的窗口类名称。如果您还希望探测子窗口,请在每个顶级窗口上调用EnumChildWindows

像这样调用 GetClassName:

var
  ClassName: string;
  len: Integer;
...
SetLength(ClassName, 256);
len := GetClassName(window, PChar(ClassName), Length(ClassName));
if len=0 then
  RaiseLastOSError;
SetLength(ClassName, len);

Call EnumWindows to get all the top level windows. Then call GetClassName to find out the window class name for each window. If you also wish to probe child windows then call EnumChildWindows on each top level window.

Call GetClassName like this:

var
  ClassName: string;
  len: Integer;
...
SetLength(ClassName, 256);
len := GetClassName(window, PChar(ClassName), Length(ClassName));
if len=0 then
  RaiseLastOSError;
SetLength(ClassName, len);
若沐 2024-12-06 20:16:10

只需使用 GetClassName Windows API 中的 函数(Delphi 中的方式与任何语言中的方式相同)。

Simply use the GetClassName function in the Windows API (same way in Delphi as in any language).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文