Control.FromChildHandle(IntPtr) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Récupère le contrôle qui contient le handle spécifié.
public:
static System::Windows::Forms::Control ^ FromChildHandle(IntPtr handle);
public static System.Windows.Forms.Control FromChildHandle (IntPtr handle);
public static System.Windows.Forms.Control? FromChildHandle (IntPtr handle);
static member FromChildHandle : nativeint -> System.Windows.Forms.Control
Public Shared Function FromChildHandle (handle As IntPtr) As Control
Paramètres
- handle
-
IntPtr
nativeint
Handle de fenêtre (HWND
) à rechercher.
Retours
Control qui représente le contrôle associé au handle spécifié ; retourne null
en l'absence d'un contrôle associé au handle spécifié.
Remarques
Cette méthode recherche la chaîne parente du handle de fenêtre jusqu’à ce qu’elle trouve un handle associé à un contrôle. Cette méthode est plus fiable que la FromHandle méthode, car elle retourne correctement des contrôles qui possèdent plusieurs handles.