4 instantiations of WindowCollection
PresentationFramework (4)
src\Framework\System\Windows\Application.cs (2)
1963_appWindowList = new WindowCollection(); 1985_nonAppWindowList = new WindowCollection();
src\Framework\System\Windows\Window.cs (1)
7557_ownedWindows = new WindowCollection();
src\Framework\System\Windows\WindowCollection.cs (1)
156clone = new WindowCollection(_list.Count);
14 references to WindowCollection
PresentationFramework (14)
src\Framework\System\Windows\Application.cs (6)
905public WindowCollection Windows 1955internal WindowCollection WindowsInternal 1977internal WindowCollection NonAppWindowsInternal 2422private void InvalidateResourceReferenceOnWindowCollection(WindowCollection wc, ResourcesChangeInfo info) 2789private WindowCollection _appWindowList; 2790private WindowCollection _nonAppWindowList;
src\Framework\System\Windows\Navigation\NavigationService.cs (1)
636static private INavigatorBase FindTargetInWindowCollection(WindowCollection wc, string targetName)
src\Framework\System\Windows\Window.cs (5)
1322WindowCollection ownedWindows = OwnedWindows; 1388public WindowCollection OwnedWindows 4671WindowCollection ownedWindows = OwnedWindowsInternal; 7551private WindowCollection OwnedWindowsInternal 7619private WindowCollection _ownedWindows;
src\Framework\System\Windows\WindowCollection.cs (2)
151internal WindowCollection Clone() 153WindowCollection clone;