GetWindow

    GetWindow - 지정한 Window와의 관계 Window찾기

    GetWindow함수는 지정한 특정 Window로 부터 관계된 Window의 Handle을 반환합니다. Declare Function GetWindow Lib "user32" Alias "GetWindow" (ByVal hwnd As Integer, ByVal wCmd As Integer) As Integer - VB.NET 선언 [DllImport("user32")] public static extern int GetWindow(int hwnd, int wCmd); - C# 선언 GetWindow함수의 첫번째 인수는 관계 Window를 찾을 주 Window의 Handle을 지정하고 두번째 인수에서 지정한 Window와 어떤 관계에 있는 Window를 찾을 것인지를 지정합니다. 이때 어떤 관계의 Wind..