Cursor.Hide 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
커서를 숨깁니다.
public:
static void Hide();
public static void Hide ();
static member Hide : unit -> unit
Public Shared Sub Hide ()
예제
다음 코드 예제에서는 마우스 포인터가 단추의 클라이언트 영역에 들어갈 때 커서를 숨깁니다. 마찬가지로 마우스 포인터가 단추의 클라이언트 영역을 벗어나면 커서가 다시 표시됩니다. 이 예제에는 명명myButton
된 Form 자가 Button 필요합니다.
private:
void myButton_MouseEnter( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// Hide the cursor when the mouse pointer enters the button.
::Cursor::Hide();
}
void myButton_MouseLeave( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// Show the cursor when the mouse pointer leaves the button.
::Cursor::Show();
}
private void myButton_MouseEnter(object sender, System.EventArgs e)
{
// Hide the cursor when the mouse pointer enters the button.
Cursor.Hide();
}
private void myButton_MouseLeave(object sender, System.EventArgs e)
{
// Show the cursor when the mouse pointer leaves the button.
Cursor.Show();
}
Private Sub myButton_MouseEnter(sender As Object, e As System.EventArgs) Handles myButton.MouseEnter
' Hide the cursor when the mouse pointer enters the button.
Cursor.Hide()
End Sub
Private Sub myButton_MouseLeave(sender As Object, e As System.EventArgs) Handles myButton.MouseLeave
' Show the cursor when the mouse pointer leaves the button.
Cursor.Show()
End Sub
설명
및 Hide 메서드 호출은 Show 균형을 유지해야 합니다. 메서드를 호출할 Hide 때마다 메서드에 대한 해당 호출이 Show 있어야 합니다.