- Control Position
- Absolute Position from Screen
button1.PointToScreen(new Point(0, 0))
- Mouse Position
- Absolute Position from Screen
Control.MousePosition
System.Windows.Forms.Cursor.Position.X
System.Windows.Forms.Cursor.Position.Y
- Position Related to Left-top of Form
this.PointToClient(Control.MousePosition)
网友评论