Partager via


Comment : obtenir toutes les fenêtres dans une application

Cet exemple montre comment obtenir tous les objets Window dans une application.

Exemple

Chaque Window instancié, visible ou non, est automatiquement ajouté à une collection de références de fenêtres qui est gérée par Application et exposée à partir de Windows.

Vous pouvez énumérer Windows pour obtenir toutes les fenêtres instanciées en utilisant le code suivant :

            For Each window As Window In Application.Current.Windows
              Console.WriteLine(window.Title)
            Next window
foreach( Window window in Application.Current.Windows ) {
  Console.WriteLine(window.Title);
}