4

我想要获得表格鼠标位置的最佳方法。

我现在在变量中设置鼠标位置的值,以便在另一种方法“Like Form1_Click”中获取它们。

有没有更好的方法来做到这一点??

非常感谢你。

4

2 回答 2

0
xm=System.Windows.Forms.Cursor.Position.X - this.Location.X
ym=System.Windows.Forms.Cursor.Position.Y - this.Location.Y

那么你应该这样做:

xm - form border x 
ym - form border y
于 2015-12-13T21:05:34.633 回答