5 instantiations of WindowCollection
PresentationFramework (5)
System\Windows\Application.cs (2)
1830_appWindowList = new WindowCollection(); 1852_nonAppWindowList = new WindowCollection();
System\Windows\ThemeManager.cs (1)
334internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (1)
7177_ownedWindows = new WindowCollection();
System\Windows\WindowCollection.cs (1)
149clone = new WindowCollection(_list.Count);
15 references to WindowCollection
PresentationFramework (15)
System\Windows\Application.cs (6)
764public WindowCollection Windows 1822internal WindowCollection WindowsInternal 1844internal WindowCollection NonAppWindowsInternal 2143private void InvalidateResourceReferenceOnWindowCollection(WindowCollection wc, ResourcesChangeInfo info) 2427private WindowCollection _appWindowList; 2428private WindowCollection _nonAppWindowList;
System\Windows\Navigation\NavigationService.cs (1)
487private static INavigatorBase FindTargetInWindowCollection(WindowCollection wc, string targetName)
System\Windows\ThemeManager.cs (1)
334internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (5)
1263WindowCollection ownedWindows = OwnedWindows; 1316public WindowCollection OwnedWindows 4497WindowCollection ownedWindows = OwnedWindowsInternal; 7171private WindowCollection OwnedWindowsInternal 7237private WindowCollection _ownedWindows;
System\Windows\WindowCollection.cs (2)
144internal WindowCollection Clone() 146WindowCollection clone;