ShowWindow

    ShowWindow - Window Vision설정및 상태조정

    ShowWindow함수는 특정 Window를 숨기거나 보이게 하고 최소화, 최대화등의 상태를 변경하도록 하는 함수입니다. Declare Function ShowWindow Lib "user32" Alias "ShowWindow" (ByVal hwnd As Integer, ByVal nCmdShow As Integer) As Integer ▶VB.NET 선언 [DllImport("user32")] public static extern int ShowWindow(int hwnd, int nCmdShow); ▶C# 선언 ShowWindow함수의 첫번째 인수는 대상이 될 Window의 Handle을 지정하고 두번째 인수는 해당 Window를 어떠한 형태로 보이거나 숨길것인지를 지정하도록 합니다. 두번째 인수에서..