5 instantiations of WindowCollection
PresentationFramework (5)
System\Windows\Application.cs (2)
1840_appWindowList = new WindowCollection(); 1862_nonAppWindowList = new WindowCollection();
System\Windows\ThemeManager.cs (1)
324internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (1)
7206_ownedWindows = new WindowCollection();
System\Windows\WindowCollection.cs (1)
150clone = new WindowCollection(_list.Count);
15 references to WindowCollection
PresentationFramework (15)
System\Windows\Application.cs (6)
765public WindowCollection Windows 1832internal WindowCollection WindowsInternal 1854internal WindowCollection NonAppWindowsInternal 2153private void InvalidateResourceReferenceOnWindowCollection(WindowCollection wc, ResourcesChangeInfo info) 2437private WindowCollection _appWindowList; 2438private WindowCollection _nonAppWindowList;
System\Windows\Navigation\NavigationService.cs (1)
494static private INavigatorBase FindTargetInWindowCollection(WindowCollection wc, string targetName)
System\Windows\ThemeManager.cs (1)
324internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (5)
1264WindowCollection ownedWindows = OwnedWindows; 1323public WindowCollection OwnedWindows 4511WindowCollection ownedWindows = OwnedWindowsInternal; 7200private WindowCollection OwnedWindowsInternal 7266private WindowCollection _ownedWindows;
System\Windows\WindowCollection.cs (2)
145internal WindowCollection Clone() 147WindowCollection clone;