Control.FromHandle(IntPtr) 方法

定义

返回当前与指定句柄关联的控件。

public:
 static System::Windows::Forms::Control ^ FromHandle(IntPtr handle);
public static System.Windows.Forms.Control FromHandle (IntPtr handle);
static member FromHandle : nativeint -> System.Windows.Forms.Control
Public Shared Function FromHandle (handle As IntPtr) As Control

参数

handle
IntPtr

nativeint

要搜索的窗口句柄 (HWND)。

返回

Control

Control,它表示与指定句柄关联的控件;如果找不到带有指定句柄的控件,就返回 null

注解

FromChildHandle如果需要返回拥有多个句柄的控件,请使用此方法。

适用于

另请参阅