Window.OwnedWindows Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une collection de fenêtres dont cette fenêtre est propriétaire.
public:
property System::Windows::WindowCollection ^ OwnedWindows { System::Windows::WindowCollection ^ get(); };
public System.Windows.WindowCollection OwnedWindows { get; }
member this.OwnedWindows : System.Windows.WindowCollection
Public ReadOnly Property OwnedWindows As WindowCollection
Valeur de propriété
WindowCollection qui contient des références aux fenêtres dont cette fenêtre est propriétaire.
Exemples
L’exemple suivant montre comment énumérer OwnedWindows.
foreach (Window ownedWindow in this.OwnedWindows)
{
Console.WriteLine(ownedWindow.Title);
}
For Each ownedWindow As Window In Me.OwnedWindows
Console.WriteLine(ownedWindow.Title)
Next ownedWindow
Remarques
Une fenêtre appartenant est une Owner dont la propriété est définie avec une référence à une autre fenêtre, appelée fenêtre propriétaire. Pour trouver toutes les fenêtres propriétaires d’une fenêtre propriétaire, vous pouvez énumérer WindowCollection qui est retournée par la OwnedWindows propriété.