Control.Handle Property

 

Gets the window handle that the control is bound to.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

[<BrowsableAttribute(false)>]
abstract Handle : nativeint with get
[<BrowsableAttribute(false)>]
override Handle : nativeint with get

Property Value

Type: System.IntPtr

An IntPtr that contains the window handle (HWND) of the control.

The value of the Handle property is a Windows HWND. If the handle has not yet been created, referencing this property will force the handle to be created.

The following code example demonstrates using the ControlPaint.DrawFocusRectangle and the Handle property. To run the example paste the following code in a form. Add two buttons named Button1 and Button2 to the form and ensure all events are connected to their event handlers.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: