在应用程序中跟踪MOUSE的坐标(2)
作者:佚名; 更新时间:2014-12-05
procedure TForm1.WndProc(var Message: Tmessage);
var x,y:integer;
begin
if Message.Msg = MessageID then
begin
// Panel1.Caption := IntToStr(Num);
x:=PMouseHookStruct( message.lparam)^.pt.x ;
y:=PMouseHookStruct( message.lparam)^.pt.y ;
panel1.caption:=x=+inttostr(x)+ y=+inttostr(y);
inc(Num);
counter.Caption := IntToStr(Num);
end
else Inherited;
end;
end.
上一篇:加密与解密算法的研究
下一篇:串口通信在双机冗余系统中应用
热门论文