如何获得鼠标在画布上的位置?(50分)

  • 主题发起人 主题发起人 问题猫
  • 开始时间 开始时间

问题猫

Unregistered / Unconfirmed
GUEST, unregistred user!
如何获得鼠标在Image控件上的位置?
 
不是有mouse时间跟踪吗?
点击有down时间,移动有move事件,你看看就知道了
 
在Image控件的OnMouseMove中监测即可!
Var
MyPoint : TPoint;
Begin
MyPoint.X:=X;
MyPoint.Y:=Y;
StatusBar.SimpleText := 'X:'+IntToStr(MyPoint.X)+''+'Y:'+IntToStr(MyPoint.Y)+ '';
 
OnMouseMove

or

GetCursorPos
 
[:D][8D][^]多谢!
 
后退
顶部