5 instantiations of WindowCollection
PresentationFramework (5)
System\Windows\Application.cs (2)
1872_appWindowList = new WindowCollection(); 1894_nonAppWindowList = new WindowCollection();
System\Windows\ThemeManager.cs (1)
333internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (1)
7221_ownedWindows = new WindowCollection();
System\Windows\WindowCollection.cs (1)
151clone = new WindowCollection(_list.Count);
15 references to WindowCollection
PresentationFramework (15)
System\Windows\Application.cs (6)
801public WindowCollection Windows 1864internal WindowCollection WindowsInternal 1886internal WindowCollection NonAppWindowsInternal 2229private void InvalidateResourceReferenceOnWindowCollection(WindowCollection wc, ResourcesChangeInfo info) 2517private WindowCollection _appWindowList; 2518private WindowCollection _nonAppWindowList;
System\Windows\Navigation\NavigationService.cs (1)
510static private INavigatorBase FindTargetInWindowCollection(WindowCollection wc, string targetName)
System\Windows\ThemeManager.cs (1)
333internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (5)
1285WindowCollection ownedWindows = OwnedWindows; 1344public WindowCollection OwnedWindows 4530WindowCollection ownedWindows = OwnedWindowsInternal; 7215private WindowCollection OwnedWindowsInternal 7281private WindowCollection _ownedWindows;
System\Windows\WindowCollection.cs (2)
146internal WindowCollection Clone() 148WindowCollection clone;