2012-06-05 16 views
7

Ho un problema con un programma che perde lo stato attivo. Non è il mio programma. Come posso scrivere un secondo programma per impostare lo stato attivo su quella finestra ogni 1-2 secondi? È possibile farlo?Come impostare lo stato attivo su un'altra finestra?

+0

Stai dicendo che vorresti che lo stato attivo passasse tra il tuo programma e questo secondo secondo programma ogni secondo? O nella tua applicazione vorrebbe portare l'altro programma in primo piano ogni 2 secondi (nel caso in cui sia andato di nuovo sul retro)? – Faraday

+0

È un programma (processo di programma diverso) o un modulo figlio? –

+0

il suo programma diffrent e voglio che il mio programma lo porti solo a fuoco ... – Endiss

risposta

8

È possibile utilizzare seguente API Win32 se si vuole portare qualche altro programma/processo

 [DllImport("coredll.dll")] 
     static extern bool SetForegroundWindow (IntPtr hWnd); 

     private void BringToFront(Process pTemp) 
     { 
      SetForegroundWindow(pTemp.MainWindowHandle); 
     } 
+11

Su Windows, dovresti usare 'user32.dll', perché' coredll.dll' è per Windows Mobile! –

2

utilizzare Spy ++ o altri strumenti di interfaccia utente per trovare il nome della classe della finestra che si desidera mettere a fuoco, dire la sua: focusWindowClassName . Quindi aggiungi le seguenti funzioni:

[DllImport("USER32.DLL")] 
public static extern bool SetForegroundWindow(IntPtr hWnd); 

[System.Runtime.InteropServices.DllImport("User32.dll")] 
public static extern bool ShowWindow(IntPtr handle, int nCmdShow); 

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] 
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); 

Then: 

IntPrt hWnd = FindWindow("focusWindowClassName", null); // this gives you the handle of the window you need. 

// then use this handle to bring the window to focus or forground(I guessed you wanted this). 

// sometimes the window may be minimized and the setforground function cannot bring it to focus so: 

/*use this ShowWindow(IntPtr handle, int nCmdShow); 
*there are various values of nCmdShow 3, 5 ,9. What 9 does is: 
*Activates and displays the window. If the window is minimized or maximized, *the system restores it to its original size and position. An application *should specify this flag when restoring a minimized window */ 

ShowWindow(hWnd, 9); 
//The bring the application to focus 
SetForegroundWindow(hWnd); 

// you wanted to bring the application to focus every 2 or few second 
// call other window as done above and recall this window again. 
Problemi correlati