NativeWindow.FromHandle(IntPtr) 方法

定义

检索与指定句柄相关联的窗口。

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

参数

handle
IntPtr

nativeint

窗口的句柄。

返回

与指定句柄相关联的 NativeWindow。 当句柄没有关联窗口时,此方法将返回 null

注解

如果收到来自其他方法的句柄,请使用此方法检索与句柄关联的窗口。 句柄必须已由当前进程中的另一个 NativeWindow 拥有;否则返回 null

适用于

另请参阅