有没有办法在不使用 System.Windows.Forms.Cursor 的情况下操纵鼠标位置?可能是互操作之类的东西?
原因是我们使用了一个专门的 .NET 子集,它不能包含 System.Windows.Forms。
糟糕,我的问题读得太快了,这是正确的 PInvoke 调用
[DllImport("user32.dll")]
static extern bool SetCursorPos(int X, int Y);
private void MoveCursor()
{
// Set the Current cursor, move the cursor's Position,
// and set its clipping rectangle to the form.
this.Cursor = new Cursor(Cursor.Current.Handle);
Cursor.Position = new Point(Cursor.Position.X - 50, Cursor.Position.Y - 50);
Cursor.Clip = new Rectangle(this.Location, this.Size);
}