5

有没有办法在不使用 System.Windows.Forms.Cursor 的情况下操纵鼠标位置?可能是互操作之类的东西?

原因是我们使用了一个专门的 .NET 子集,它不能包含 System.Windows.Forms。

4

2 回答 2

7

糟糕,我的问题读得太快了,这是正确的 PInvoke 调用

[DllImport("user32.dll")]
static extern bool SetCursorPos(int X, int Y);

来源:http ://www.pinvoke.net/default.aspx/user32.setcursorpos

于 2012-06-19T00:23:34.407 回答
-2
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);
}
于 2012-06-19T00:34:08.290 回答