再会,
我有来自不同非 VLC 对象(如(SysListView32、ToolbarWin32)的不同句柄,我想知道是否有任何方法可以转换这些句柄(HWND)。
例如,我得到了开始按钮(位于桌面左下角)句柄。然后我找到了类名“Button”。
我想投射他并从他那里检索标题属性“开始”。例如:
type
TButtonStartMenuFictiveClass = class(TButton)
public
Text: string;
end;
if classname = 'button' then
begin
ShowMessage((objecthandle as TButtonStartMenuFictiveClass).Text);
end;
我正在寻找挂钩所有对象并显示它们的文本。就像 Windows 中的叙述者。