NativeWindow.FromHandle(IntPtr) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索与指定句柄相关联的窗口。
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
。