我想创建一个c#app,将鼠标移动到屏幕上指定的x,y位置。我尝试了一些我在网上找到的代码,但似乎都没有。
答案 0 :(得分:0)
试试这个:
System.Windows.Forms.Cursor.Position = new Point { X = xxx, Y = yyy };
或尝试使用原生WinAPI for XP(或更早版本):
[DllImport("user32.dll")]
public static extern long SetCursorPos(int x, int y);
public void SetCursorPosition(Point p)
{
SetCursorPos(p.X, p.Y);
}