src\Framework\System\Windows\Documents\FixedPage.cs (16)
65FlowDirectionProperty.OverrideMetadata(typeof(FixedPage), metadata);
420typeof(FixedPage),
446typeof(FixedPage),
463typeof(FixedPage),
480typeof(FixedPage),
497typeof(FixedPage),
515typeof(FixedPage),
534typeof(FixedPage),
553typeof(FixedPage),
563typeof(FixedPage),
865UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)
1050if (parent is FixedPage)
1052childIndex = ((FixedPage)parent).Children.IndexOf((UIElement)e);
1102FixedPage fixedPage = current as FixedPage;
1106fixedPage = obj as FixedPage;
src\Framework\System\Windows\Documents\PageContent.cs (28)
88public FixedPage GetPageRoot(bool forceReload)
100FixedPage p = null;
133FixedPage p = null;
196FixedPage fp = value as FixedPage;
199throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(FixedPage)), "value");
286public FixedPage Child
370internal bool IsOwnerOf(FixedPage pageVisual)
385FixedPage c = (FixedPage)_pageRef.Target;
422internal FixedPage PageStream
456FixedPage[] children;
457FixedPage child = _child;
469children = new FixedPage[0];
473children = new FixedPage[] { child };
505private void _NotifyPageCompleted(FixedPage result, Exception error, bool cancelled, object userToken)
542private FixedPage _LoadPage()
546FixedPage p = null;
592private FixedPage _GetLoadedPage()
594FixedPage p = null;
597p = (FixedPage)_pageRef.Target;
613internal static void _LoadPageImpl(Uri baseUri, Uri uriToLoad, out FixedPage fixedPage, out Stream pageStream)
640if (o != null && !(o is FixedPage))
645fixedPage = (FixedPage)o;
658private FixedPage _child; // directly hosted page stream
671internal GetPageRootCompletedEventArgs(FixedPage page, Exception error, bool cancelled, object userToken)
680public FixedPage Result
689private FixedPage _page;