本文整理自网络,侵删。
DELPHI 控件的相对坐标与屏幕坐标转换
一、直接上代码
var pt: TPoint; r: TRect;begin pt := Point(Edit1.Top, Edit1.Left); pt := ClientToScreen(pt); Edit2.Text := inttostr(pt.X); Edit3.Text := inttostr(pt.y); Mouse.CursorPos := Point(pt.X, pt.y); GetWindowRect(Form2.Handle, r); Mouse.CursorPos := Point(r.Left + 20, r.Top + 150 + 20);
相关阅读 >>
Delphi access violations 问题的解决之道
Delphi示例代码 android,ios,osx,windows,linux,html5
Delphi 得到 winrar 处理解压缩文件的返回值 ?
更多相关阅读请进入《Delphi》频道 >>