public static bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, Standard.SWP uFlags)
 {
     if (!_SetWindowPos(hWnd, hWndInsertAfter, x, y, cx, cy, uFlags))
     {
         return(false);
     }
     return(true);
 }
 private static extern bool _SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, Standard.SWP uFlags);