SetWindowPos

    SetWindowPos - Window종류및 크기와 표시 Level변경

    SetWindowPos함수는 Window의 형태, 크기, 표시Leve등 Window의 속성을 변경하는 함수입니다. Declare Function SetWindowPos Lib "user32" Alias "SetWindowPos" (ByVal hwnd As Integer, ByVal hWndInsertAfter As Integer, ByVal x As Integer, ByVal y As Integer, ByVal cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As Integer ▶VB.NET 선언 [DllImport("user32")] public static extern int SetWindowPos(int hwnd, int hWndInser..