码迷,mamicode.com
首页 > 移动开发 > 详细

delphi7 怎么让button按钮跟着鼠标点击dbgrideh数据行移动

时间:2017-07-25 22:31:23      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:window   over   getc   title   point   cursor   key   phi   dex   

delphi7 怎么让button按钮跟着鼠标点击dbgrideh数据行移动

在 dbgrid的DBGridCellClick 事件中加上:

Delphi/Pascal code
 

1
2
3
4
5
6
7
8
9
10
11
var
  x, y : integer ;
  P: TPoint;
begin
  GetCursorPos(P);
  Edit1.Text := Format(‘X: %d, Y: %d‘,[P.X, P.Y]);
  x := frMainTest.Left ;
  y := frMainTest.Top ;
  Button.Top := P.Y - y - 45 ;
  Button.Left := P.X - x ;
  Button.BringToFront();



注: Button 的位置,需要根据你放置的容器不同而计算出相对位置。

GetCursorPos(P) 获取的是鼠标在屏幕的位置。

 

delphi7 怎么让button按钮跟着鼠标点击dbgrideh数据行移动

标签:window   over   getc   title   point   cursor   key   phi   dex   

原文地址:http://www.cnblogs.com/lantianhf/p/7236444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!