Control.Handle プロパティ

定義

コントロールのバインド先のウィンドウ ハンドルを取得します。

public:
 property IntPtr Handle { IntPtr get(); };
[System.ComponentModel.Browsable(false)]
public IntPtr Handle { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Handle : nativeint
Public ReadOnly Property Handle As IntPtr

プロパティ値

IntPtr

nativeint

コントロールのウィンドウ ハンドル (IntPtr) を格納する HWND

実装

属性

次のコード例では、 プロパティと プロパティの ControlPaint.DrawFocusRectangle 使用方法を Handle 示します。 この例を実行するには、次のコードをフォームに貼り付けます。 と Button2 という名前Button1の 2 つのボタンをフォームに追加し、すべてのイベントがイベント ハンドラーに接続されていることを確認します。

// This method draws a focus rectangle on Button2 using the 
// handle and client rectangle of Button2.
void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   ControlPaint::DrawFocusRectangle( Graphics::FromHwnd( Button2->Handle ), Button2->ClientRectangle );
}
// This method draws a focus rectangle on Button2 using the 
// handle and client rectangle of Button2.
private void Button1_Click(System.Object sender, System.EventArgs e)
{
    ControlPaint.DrawFocusRectangle(Graphics.FromHwnd(Button2.Handle), 
        Button2.ClientRectangle);
}
' This method draws a focus rectangle on Button2 using the 
' handle and client rectangle of Button2.
Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click
    ControlPaint.DrawFocusRectangle(Graphics.FromHwnd(Button2.Handle), _
    Button2.ClientRectangle)
End Sub

注釈

プロパティの Handle 値は Windows です HWND。 ハンドルがまだ作成されていない場合、このプロパティを参照すると、ハンドルが強制的に作成されます。

適用対象

こちらもご覧ください