web-dev-qa-db-fra.com

Comment obtenir le titre de la fenêtre active en cours en utilisant c #?

Je voudrais savoir comment saisir le titre de la fenêtre de la fenêtre active actuelle (c'est-à-dire celle qui a le focus) en utilisant C #.

106
d4nt

Voir l'exemple sur comment faire cela avec le code source complet ici:

http://www.csharphelp.com/2006/08/get-current-window-handle-and-caption-with-windows-api-in-c/

[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();

[DllImport("user32.dll")]
static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);

private string GetActiveWindowTitle()
{
    const int nChars = 256;
    StringBuilder Buff = new StringBuilder(nChars);
    IntPtr handle = GetForegroundWindow();

    if (GetWindowText(handle, Buff, nChars) > 0)
    {
        return Buff.ToString();
    }
    return null;
}

Edité avec les commentaires de @Doug McClean pour une meilleure exactitude.

160
Jorge Ferreira

Si vous parliez de WPF, utilisez:

 Application.Current.Windows.OfType<Window>().SingleOrDefault(w => w.IsActive);
17
Skvettn

Utilisez l'API Windows. Appelez GetForegroundWindow().

GetForegroundWindow() vous donnera un descripteur (nommé hWnd) à la fenêtre active.

Documentation: Fonction GetForegroundWindow | Microsoft Docs

4
ine

Boucle sur Application.Current.Windows[] et trouvez celui avec IsActive == true.

4
Azher

Basé sur fonction GetForegroundWindow | Microsoft Docs :

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern IntPtr GetForegroundWindow();

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern int GetWindowTextLength(IntPtr hWnd);

private string GetCaptionOfActiveWindow()
{
    var strTitle = string.Empty;
    var handle = GetForegroundWindow();
    // Obtain the length of the text   
    var intLength = GetWindowTextLength(handle) + 1;
    var stringBuilder = new StringBuilder(intLength);
    if (GetWindowText(handle, stringBuilder, intLength) > 0)
    {
        strTitle = stringBuilder.ToString();
    }
    return strTitle;
}

Il supporte les caractères UTF8.

2
Mohammad Dayyan

S'il s'avère que vous avez besoin du formulaire actif actuel de votre MDI : ( MDI - Multi Document Interface).

Form activForm;
activForm = Form.ActiveForm.ActiveMdiChild;
0
Arthur Zennig