반응형
현재 커서의 위치를 취득하는 방법이다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(System.Windows.Forms.dll)
Private Sub MoveCursor()
' Set the Current cursor, move the cursor's Position,
' and set its clipping rectangle to the form.
Me.Cursor = New Cursor(Cursor.Current.Handle)
Cursor.Position = New Point(Cursor.Position.X - 50, Cursor.Position.Y - 50)
Cursor.Clip = New Rectangle(Me.Location, Me.Size)
End Sub
이와같은 함수로 현재 커서의 위치를 취득할수 있다.
반응형
'VB.NET' 카테고리의 다른 글
[답변] ColumnHeadersDefaultCellStyle.BackColor 적용관련 (0) | 2013.02.19 |
---|---|
값비교 및 결과출력에 대한 예제 (0) | 2013.01.29 |
MVC4, Azure 소스 및 예제입니다. (1) | 2013.01.28 |
타이머 테스트 (0) | 2013.01.21 |
Visual Basic 6.0에서 Visual Basic .NET으로 마이그레이션할 경우 얻을 수 있는 이점 (0) | 2013.01.08 |