728x90
GetParent함수는 지정된 자식 Window에서 부모 Window의 Handle을 찾아 반환합니다.
Declare Function GetParent Lib "user32" Alias "GetParent" (ByVal hwnd As Integer) As Integer
▶VB.NET 선언
[DllImport("user32")]
public static extern int GetParent(int hwnd);
▶C# 선언
해당 함수의 인수로는 부모 Window의 Handle을 찾을 자식 Window Handle을 지정합니다.
GetParent(handle)
▶VB.NET 호출
GetParent(handle);
▶C# 호출
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
GetWindowText - 특정 Window의 제목 문자열 확인 (0) | 2019.08.06 |
---|---|
ShowWindow - Window Vision설정및 상태조정 (2) | 2019.08.06 |
GetDiskFreeSpace - 지정한 Disk의 용량확인 (0) | 2019.08.06 |
MoveWindow - 지정한 Window의 위치및 크기 변환 (0) | 2019.08.06 |
SetForegroundWindow - 작업 Window설정 (0) | 2019.08.05 |