如何使用c#移动鼠标光标

本文关键字:鼠标 光标 移动 何使用 | 更新日期: 2023-09-27 18:13:54

我想模拟每x秒鼠标移动一次。为此,我将使用计时器(x秒),当计时器滴答作响时,我将使鼠标移动。

但是,我如何使用c#使鼠标光标移动?

如何使用c#移动鼠标光标

看一下Cursor.Position属性。它应该能让你开始学习。

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);
}

首先添加一个名为Win32.cs的类

public class Win32
{ 
    [DllImport("User32.Dll")]
    public static extern long SetCursorPos(int x, int y);
    [DllImport("User32.Dll")]
    public static extern bool ClientToScreen(IntPtr hWnd, ref POINT point);
    [StructLayout(LayoutKind.Sequential)]
    public struct POINT
    {
        public int x;
        public int y;
        public POINT(int X, int Y)
        {
            x = X;
            y = Y;
        }
    }
}

你可以这样使用:

Win32.POINT p = new Win32.POINT(xPos, yPos);
Win32.ClientToScreen(this.Handle, ref p);
Win32.SetCursorPos(p.x, p.y);