对于Windows 10 64位,C#将鼠标光标移动到屏幕上的特定位置

时间:2019-03-08 10:37:04

标签: c# mouse

我尝试过此操作,但我认为它仅适用于32位Windows。

How to move mouse cursor using C#?

我收到很多红色下划线错误,例如“游标不包含Position的定义”和“矩形不包含带有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);
}

搜索了较旧的线程,但我认为代码已过时,并且无法在Windows 64位OS中运行。所以我在寻找新的代码。

0 个答案:

没有答案