在没有System.Windows.Forms的情况下设置鼠标位置

时间:2012-06-19 00:12:35

标签: c# windows mouse

有没有办法在不使用System.Windows.Forms.Cursor的情况下操纵鼠标位置?像interop这样的东西可能吗?

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

2 个答案:

答案 0 :(得分:7)

哎呀我的坏,阅读问题太快,继续正确的PInvoke调用

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

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

答案 1 :(得分:-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);
}