반응형
현재 커서의 위치를 취득하는 방법이다.
네임스페이스: 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);
}
이와같은 함수로 현재 커서의 위치를 취득할수 있다.
반응형
'C#' 카테고리의 다른 글
[답변] System.Threading.Timer 질문드립니다. (0) | 2016.05.19 |
---|---|
TextBox에 숫자만 입력되도록 하는방법 (0) | 2016.04.18 |
Windows 서비스 응용 프로그램 디버깅 (0) | 2013.01.21 |
서비스 응용 프로그램에 설치 관리자 추가 (0) | 2013.01.21 |
구성 요소 디자이너에서 Windows 서비스 응용 프로그램 만들기 (0) | 2013.01.21 |