MoveWindow

    MoveWindow - 지정한 Window의 위치및 크기 변환

    MoveWindow함수는 지정한 Window를 특정위치로 이동시킴과 동시에 크기를 조정하는 함수입니다. Declare Function MoveWindow Lib "user32" Alias "MoveWindow" (ByVal hwnd As Integer, ByVal x As Integer, ByVal y As Integer, ByVal nWidth As Integer, ByVal nHeight As Integer, ByVal bRepaint As Boolean) As Integer ▶VB.NET 선언 [DllImport("user32")] public static extern int MoveWindow(int hwnd, int x, int y, int nWidth, int nHeight, bool bRep..