본문 바로가기

C#

커서의 위치를 취득하는 방법

반응형

현재 커서의 위치를 취득하는 방법이다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(System.Windows.Forms.dll)

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

이와같은 함수로 현재 커서의 위치를 취득할수 있다.

 

반응형