//声明:
WindowFromPoint(Point: TPoint): HWND
//举例:
unit Unit1
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls
type
TForm1 = class(TForm)
Button1: TButton
Timer1: TTimer
procedure Timer1Timer(Sender: TObject)
end
var
Form1: TForm1
implementation
{$R *.dfm}
var
h: HWND
procedure TForm1.Timer1Timer(Sender: TObject)
var
pt: TPoint
arr: array[0..254] of Char
begin
if GetCursorPos(pt) then {如果能获取点}
begin
h := WindowFromPoint(pt)
GetClassName(h, arr, Length(arr))
Text := arr
end
end
end.