gpt4 book ai didi

Delphi 如何获取控件上的光标位置?

转载 作者:行者123 更新时间:2023-12-03 14:55:09 25 4
gpt4 key购买 nike

我想知道 TCustomControl 上光标的位置。如何找到坐标?

最佳答案

GetCursorPos如果您无法处理鼠标事件,这会很有帮助:

function GetCursorPosForControl(AControl: TWinControl): TPoint;
var
P: TPoint;
begin
Windows.GetCursorPos(P);
Windows.ScreenToClient(AControl.Handle, P );
result := P;
end;

关于Delphi 如何获取控件上的光标位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6647817/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com