如何得到鼠标下面的控件名称或句柄(当前窗口就行)(100分)

  • 主题发起人 主题发起人 Axe
  • 开始时间 开始时间
A

Axe

Unregistered / Unconfirmed
GUEST, unregistred user!
要求:1.不用Hook
; ; ; 2.不用TForm.Controls进行枚举
 
form.onmousemove
;getclassname
 
2 api function:
GetCursorPos();
WindowFromPoint();
 
procedure Timer1Timer(sender: TObject);
var
; p: TPoint;
; AWnd: hWnd;
begin
; p := Mouse.CursorPos;
; AWnd := WindowFromPoint(p);
; ShowMessage(format('Window handle: %d',[AWnd]));
end;
试试?
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
601
import
I
后退
顶部