1. ホーム
  2. c#

[解決済み] C#でマウスカーソルを移動させるには?

2023-05-12 06:01:30

質問

x秒ごとにマウスの動きをシミュレートしたい。そのために、私はタイマー(x秒)を使用し、タイマーがカチカチ音を立てるときに私はマウスの動きを作るでしょう。

しかし、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);
}