This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
移动鼠标后,我想将鼠标指针移动到他的原始位置。如何将光标位置移动到我想要的位置。
Private Sub MoveCursor(ByVal sender As Object, ByVal e As MouseEventArgs)
Me.Cursor = New Cursor
Cursor.Position = New Point(Cursor.Position.X - 50, Cursor.Position.Y - 50)
End Sub