如何随时取得鼠标坐标值啊?(30分)

  • 主题发起人 主题发起人 gxdx
  • 开始时间 开始时间
G

gxdx

Unregistered / Unconfirmed
GUEST, unregistred user!
不用mousemove事件的。
谢谢!!
 
var
pp: Tpoint;
x,y: integer;
begin
GetCursorPos(pp);
x := pp.x;
y := pp.y;
end;
 
接受答案了.
 
后退
顶部