SetWindowPos
[DllImport("coredll.dll", SetLastError = true)]
public static extern bool SetWindowPos(
IntPtr hWnd,
IntPtr hWndInsertAfter,
int x,
int y,
int cx,
int cy,
uint uFlags
);
Microsoft documentation: Link
Last updated
[DllImport("coredll.dll", SetLastError = true)]
public static extern bool SetWindowPos(
IntPtr hWnd,
IntPtr hWndInsertAfter,
int x,
int y,
int cx,
int cy,
uint uFlags
);
Microsoft documentation: Link
Last updated