WEB开发网
开发学院软件开发C++ 获取当前鼠标位置的类名和句柄 阅读

获取当前鼠标位置的类名和句柄

 2008-03-08 22:02:48 来源:WEB开发网   
核心提示:这有点像金山词霸的屏幕取词,要获取当前鼠标位置的类名和句柄,获取当前鼠标位置的类名和句柄,只须通过 WindowFromPoint和GetClassName 这两个Win32函数就可以完成任务,不过,假如要获取当前鼠标位置的字符,可能要复杂得多
  这有点像金山词霸的屏幕取词。要获取当前鼠标位置的类名和句柄,只须通过 WindowFromPoint和GetClassName 这两个Win32函数就可以完成任务,不过,假如要获取当前鼠标位置的字符,可能要复杂得多。 下面是很简单的范例,大家应该都可以轻易弄清楚的。 type
TForm1 = class(TForm)
NameLB: TLabel;
ClassLB: TLabel;
Timer1: TTimer;
PRocedure Timer1Timer(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
procedure GetMousePosHwndAndClassName(Sender : TPoint);
public

end;

var
Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.Timer1Timer(Sender: TObject);
var
rPos: TPoint;
begin
if boolean(GetCursorPos(rPos)) then
GetMousePosHwndAndClassName(rPos);
end;

procedure TForm1.GetMousePosHwndAndClassName(Sender: TPoint);
var
hWnd: THandle;
aName: array [0..255] of char;
begin
hWnd := WindowFromPoint(Sender);
NameLB.Caption := ’Handle : ’ + IntToStr(hWnd);

if boolean(GetClassName(hWnd, aName, 256)) then
ClassLB.Caption := ’ClassName : ’ + string(aName)
else ClassLB.Caption := ’ClassName : not found’;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
Form1.FormStyle := fsStayOnTop;
Timer1.Interval := 50;
end;

Tags:获取 当前 鼠标

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接