NativeWindow.FromHandle(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 la fenêtre associée au handle spécifié.
public:
static System::Windows::Forms::NativeWindow ^ FromHandle(IntPtr handle);
public static System.Windows.Forms.NativeWindow FromHandle (IntPtr handle);
public static System.Windows.Forms.NativeWindow? FromHandle (IntPtr handle);
static member FromHandle : nativeint -> System.Windows.Forms.NativeWindow
Public Shared Function FromHandle (handle As IntPtr) As NativeWindow
Paramètres
- handle
-
IntPtr
nativeint
Handle d'une fenêtre.
Retours
NativeWindow associé au handle spécifié. Cette méthode retourne null
si le handle n'est pas associé à une fenêtre.
Remarques
Si vous recevez un handle à partir d’une autre méthode, utilisez cette méthode pour récupérer la fenêtre associée au handle. Le handle doit déjà être détenu par un autre NativeWindow dans le processus actuel ; sinon, null
il est retourné.