Control.FromHandle(IntPtr) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the control that is currently associated with the specified handle.
public:
static System::Windows::Forms::Control ^ FromHandle(IntPtr handle);
public static System.Windows.Forms.Control FromHandle (IntPtr handle);
public static System.Windows.Forms.Control? FromHandle (IntPtr handle);
static member FromHandle : nativeint -> System.Windows.Forms.Control
Public Shared Function FromHandle (handle As IntPtr) As Control
Parameters
- handle
-
IntPtr
nativeint
The window handle (HWND
) to search for.
Returns
A Control that represents the control associated with the specified handle; returns null
if no control with the specified handle is found.
Remarks
Use the FromChildHandle method if you need to return controls that own more than one handle.
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.