5 instantiations of WindowCollection
PresentationFramework (5)
System\Windows\Application.cs (2)
1831_appWindowList = new WindowCollection(); 1853_nonAppWindowList = new WindowCollection();
System\Windows\ThemeManager.cs (1)
324internal static WindowCollection FluentEnabledWindows { get; set; } = new WindowCollection();
System\Windows\Window.cs (1)
7178_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 1823internal WindowCollection WindowsInternal 1845internal WindowCollection NonAppWindowsInternal 2144private void InvalidateResourceReferenceOnWindowCollection(WindowCollection wc, ResourcesChangeInfo info) 2428private WindowCollection _appWindowList; 2429private WindowCollection _nonAppWindowList;
System\Windows\Navigation\NavigationService.cs (1)
488static 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; 1317public WindowCollection OwnedWindows 4498WindowCollection ownedWindows = OwnedWindowsInternal; 7172private WindowCollection OwnedWindowsInternal 7238private WindowCollection _ownedWindows;
System\Windows\WindowCollection.cs (2)
145internal WindowCollection Clone() 147WindowCollection clone;