Réponse acceptée !
Avec FindWindow suivit de SetWindowPos
[ DllImport( "User32.dll", SetLastError = true ) ]
private static extern IntPtr FindWindow( string className, string windowName );
[ DllImport( "user32.dll", SetLastError = true ) ]
private static extern bool SetWindowPos
(
IntPtr hWnd,
IntPtr hWndInsertAfter,
int X,
int Y,
int cx,
int cy,
uint uFlags
);
-My
Blog-