本文整理自网络,侵删。
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 窗体的位置和高宽度-tform:letf、top、width、height、clientwidth、clientheight
Delphi关于tjpegimage的使用(bmp\ jpg格式转换)
Delphi 判断iso文件,iso文件头, iso filehead
Delphi xe android的所有权限按照分类总结说明
更多相关阅读请进入《Delphi》频道 >>