次の方法で共有


Cursor.Show メソッド

カーソルを表示します。

Public Shared Sub Show()
[C#]
public static void Show();
[C++]
public: static void Show();
[JScript]
public static function Show();

解説

Show メソッドおよび Hide メソッドの呼び出しは、均等化する必要があります。 Hide メソッドへの各呼び出しには、 Show メソッドへの対応する呼び出しが必要になります。

使用例

[Visual Basic, C#, C++] マウス ポインタがボタンのクライアント領域に入ったときに、カーソルを非表示にする例を次に示します。同様に、マウス ポインタがボタンのクライアント領域から離れたときには、カーソルを再び表示します。この例は、 myButton という名前の Button を持つ Form があることを前提にしています。

 
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 'myButton_MouseEnter
      
      
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 'myButton_MouseLeave
      

[C#] 
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();
}

[C++] 
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();
    }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

Cursor クラス | Cursor メンバ | System.Windows.Forms 名前空間 | Hide