首页  编辑  

移动鼠标到控件

Tags: /超级猛料/VCL/Control.控件使用开发和第三方控件/控件使用技巧/   Date Created:

procedure MoveMouseToControl(AControl:TWinControl);

var

 rect:trect;

begin

 rect:=AControl.BoundsRect;

 MapWindowPoints(AControl.Parent.Handle,0,rect,2);

 SetCursorPos(rect.Left+(rect.Right-rect.Left) div 2,rect.Top+(rect.Bottom-rect.Top) div 2);

end;