2 instantiations of FixedPage
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4276bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.FixedPage(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1269case KnownElements.FixedPage: o = new System.Windows.Documents.FixedPage(); break;
143 references to FixedPage
PresentationFramework (143)
src\Framework\MS\Internal\Annotations\Anchoring\FixedTextSelectionProcessor.cs (3)
278FixedPage page = startNode as FixedPage; 416private DocumentPage GetDocumentPage(FixedPage page)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
1811(data.Visual is FixedPage &&
src\Framework\System\Windows\Automation\Peers\FixedPageAutomationPeer.cs (1)
22public FixedPageAutomationPeer(FixedPage owner): base(owner)
src\Framework\System\Windows\Documents\DocumentSequence.cs (3)
174UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 727FixedPage page = docPage.Visual as FixedPage;
src\Framework\System\Windows\Documents\FixedDocument.cs (32)
220UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 247FixedPage fixedPage; 356FixedPage page = SyncGetPage(pageNumber, false/*forceReload*/); 489FixedPage fixedPage = null; 496fixedPage = el as FixedPage; 655internal int GetIndexOfPage(FixedPage p) 676internal FixedPage SyncGetPageWithCheck(int index) 689internal FixedPage SyncGetPage(int index, bool forceReload) 695FixedPage fp; 699fp = (FixedPage)pc[index].GetPageRoot(forceReload); 736internal void EnsurePageSize(FixedPage fp) 767FixedPage p = null; 795internal Size ComputePageSize(FixedPage fp) 829internal Dictionary<FixedPage, ArrayList> Highlights 866_highlights = new Dictionary<FixedPage, ArrayList>(); 891FixedPage page = docPage.Visual as FixedPage; 928internal static StoryFragments GetStoryFragments(FixedPage fixedPage) 1059internal FixedPage GetFixedPage(int pageNumber) 1061FixedPage fp = null; 1103List<FixedPage> oldHighlightPages = new List<FixedPage>(); 1104foreach (FixedPage page in _highlights.Keys) 1200ICollection<FixedPage> newHighlightPages = _highlights.Keys as ICollection<FixedPage>; 1203foreach (FixedPage page in oldHighlightPages) 1281FixedPage c = (FixedPage)args.Result; 1339private Dictionary<FixedPage, ArrayList> _highlights; 1398internal FixedDocumentPage(FixedDocument panel, FixedPage page, Size fixedSize, int index) : 1489internal FixedPage FixedPage 1547private readonly FixedPage _page;
src\Framework\System\Windows\Documents\FixedDSBuilder.cs (2)
50public FixedDSBuilder(FixedPage fp, StoryFragments sf) 266private FixedPage _fixedPage;
src\Framework\System\Windows\Documents\FixedElement.cs (1)
323FixedPage page = doc.SyncGetPage(pageno, false);
src\Framework\System\Windows\Documents\FixedHyperlink.cs (3)
39UIElement FindElementByID(string elementID, out FixedPage rootFixedPage); 103FixedPage rootFixedPage = null; 110if (targetElement is FixedPage)
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\FixedSOMElement.cs (1)
76public static FixedSOMElement CreateFixedSOMElement(FixedPage page, UIElement uiElement, FixedNode fixedNode, int startIndex, int endIndex)
src\Framework\System\Windows\Documents\FixedSOMImage.cs (2)
54public static FixedSOMImage Create(FixedPage page, Image image, FixedNode fixedNode) 73public static FixedSOMImage Create(FixedPage page, Path path, FixedNode fixedNode)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (2)
230public FixedSOMPageConstructor(FixedPage fixedPage, int pageIndex) 1189private FixedPage _fixedPage;
src\Framework\System\Windows\Documents\FixedTextBuilder.cs (12)
210FixedPage page = _container.FixedDocument.SyncGetPage(pageIndex, false); 271internal FixedPage GetFixedPage(FixedNode node) 280FixedPage page = GetFixedPage(node); 910private void _CreateFixedMappingAndElementForPage(FixedPageStructure pageStructure, FixedPage page, bool constructSOM) 1303public Uri GetUri(FixedSOMElement element, FixedPage p, out UIElement shadowElement) 1313Uri relUri = FixedPage.GetNavigateUri(e); 1348return FixedPage.GetLinkUri(p, relUri); 1399public FlowModelBuilder(FixedTextBuilder builder, FixedPageStructure pageStructure, FixedPage page) 1430Debug.Assert(elem is FixedPage || elem is Canvas); 1447Uri navUri = FixedPage.GetNavigateUri(child); 1498FixedPage page = _builder.GetFixedPage(element.FixedNode); 1833private FixedPage _fixedPage;
src\Framework\System\Windows\Documents\FixedTextContainer.cs (2)
414internal void GetMultiHighlights(FixedTextPointer start, FixedTextPointer end, Dictionary<FixedPage, ArrayList> highlights, FixedHighlightType t, 438FixedPage page = this.FixedDocument.SyncGetPageWithCheck(fn.Page);
src\Framework\System\Windows\Documents\FixedTextView.cs (4)
258Dictionary<FixedPage, ArrayList> highlights = new Dictionary<FixedPage,ArrayList>(); 912FixedPage page = Container.FixedDocument.SyncGetPage(pageIndex, false); 1259private FixedPage FixedPage
src\Framework\System\Windows\Documents\HighlightVisual.cs (3)
45internal HighlightVisual(FixedDocument panel, FixedPage page) : base(page) 147internal static HighlightVisual GetHighlightVisual(FixedPage page) 370private FixedPage _page;
src\Framework\System\Windows\Documents\Hyperlink.cs (4)
611targetUri = FixedPage.GetLinkUri(sourceElement, targetUri); 670return (hl == null) ? FixedPage.NavigateUriProperty : NavigateUriProperty; 949if (fe != null && ((fe is Path) || (fe is Canvas) || (fe is Glyphs) || (fe is FixedPage))) 951if (FixedPage.CanNavigateToUri(navigateUri))
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;
src\Framework\System\Windows\Documents\PageContentAsyncResult.cs (4)
57internal PageContentAsyncResult(AsyncCallback callback, object state, Dispatcher dispatcher, Uri baseUri, Uri source, FixedPage child) 236internal FixedPage Result 275private FixedPage _child; 277private FixedPage _result;
src\Framework\System\Windows\Documents\RubberbandSelector.cs (4)
50FixedPage p = _page; 166private void UpdateHighlightVisual(FixedPage page) 695internal FixedPage Page 713private FixedPage _page; // page on which we are selecting, or null
src\Framework\System\Windows\Documents\Serialization\SerializerWriter.cs (6)
126public abstract void Write(FixedPage fixedPage); 136public abstract void Write(FixedPage fixedPage, PrintTicket printTicket); 141public abstract void WriteAsync(FixedPage fixedPage); 151public abstract void WriteAsync(FixedPage fixedPage, PrintTicket printTicket); 156public abstract void WriteAsync(FixedPage fixedPage, object userState); 166public abstract void WriteAsync(FixedPage fixedPage, PrintTicket printTicket, object userState);
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
299case 207: t = () => typeof(FixedPage); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (5)
4549Type type = typeof(System.Windows.Documents.FixedPage); 4551this.GetXamlType(typeof(System.Windows.Documents.FixedPage)), // DeclaringType 4557bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.FixedPage)target).Children; }; 5256typeof(System.Windows.Documents.FixedPage), // type 5260bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Documents.PageContent)target).Child = (System.Windows.Documents.FixedPage)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4274typeof(System.Windows.Documents.FixedPage),
src\Framework\System\Windows\Markup\KnownTypes.cs (2)
2489case KnownElements.FixedPage: return (o as System.Windows.Documents.FixedPage).Children; 5751case KnownElements.FixedPage: t = typeof(System.Windows.Documents.FixedPage); break;