Partager via


Procédure : obtenir toutes les fenêtres dans une application

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

Exemple

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

Vous pouvez énumérer Windows pour obtenir toutes les fenêtres instanciées à l’aide du code suivant :

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