有没有办法在不使用System.Windows.Forms.Cursor的情况下操纵鼠标位置?像interop这样的东西可能吗?
原因是我们使用的是一个专门的.NET子集,它不能包含System.Windows.Forms。
答案 0 :(得分:7)
哎呀我的坏,阅读问题太快,继续正确的PInvoke调用
[DllImport("user32.dll")]
static extern bool SetCursorPos(int X, int Y);
答案 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);
}