Control.FromChildHandle(IntPtr) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 핸들이 포함된 컨트롤을 검색합니다.
public:
static System::Windows::Forms::Control ^ FromChildHandle(IntPtr handle);
public static System.Windows.Forms.Control FromChildHandle (IntPtr handle);
static member FromChildHandle : nativeint -> System.Windows.Forms.Control
Public Shared Function FromChildHandle (handle As IntPtr) As Control
매개 변수
- handle
-
IntPtr
nativeint
검색할 창 핸들(HWND
)입니다.
반환
지정된 핸들과 연결된 컨트롤을 나타내는 Control입니다. 지정된 핸들이 있는 컨트롤이 없으면 null
을 반환합니다.
설명
이 메서드는 컨트롤과 연결된 핸들을 발견할 때까지 창 핸들 부모 체인을 검색합니다. 이 메서드는 둘 이상의 핸들을 소유한 컨트롤을 FromHandle 올바르게 반환하므로 메서드보다 더 안정적입니다.