Condividi tramite


NativeWindow.FromHandle(IntPtr) Metodo

Definizione

Recupera la finestra associata all'handle specificato.

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

Parametri

handle
IntPtr

nativeint

Handle di una finestra.

Restituisce

NativeWindow

Oggetto NativeWindow associato all'handle specificato. Questo metodo restituisce null quando nessuna finestra è associata all'handle.

Commenti

Se si riceve un handle da un altro metodo, usare questo metodo per recuperare la finestra associata all'handle. L'handle deve essere già di proprietà di un altro NativeWindow nel processo corrente. In caso contrario, null viene restituito.

Si applica a

Vedi anche