3 implementations of IFixedNavigate
PresentationFramework (3)
src\Framework\System\Windows\Documents\DocumentSequence.cs (1)
39public class FixedDocumentSequence : FrameworkContentElement, IDocumentPaginatorSource, IAddChildInternal, IServiceProvider, IFixedNavigate, IUriContext
src\Framework\System\Windows\Documents\FixedDocument.cs (1)
57public class FixedDocument : FrameworkContentElement, IDocumentPaginatorSource, IAddChildInternal, IServiceProvider, IFixedNavigate, IUriContext
src\Framework\System\Windows\Documents\FixedPage.cs (1)
52public sealed class FixedPage : FrameworkElement, IAddChildInternal, IFixedNavigate, IUriContext
12 references to IFixedNavigate
PresentationFramework (12)
src\Framework\System\Windows\Documents\DocumentSequence.cs (3)
161void IFixedNavigate.NavigateAsync(string elementID) 174UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 205uiElementRet = ((IFixedNavigate)childFixedDoc).FindElementByID(elementID, out rootFixedPage);
src\Framework\System\Windows\Documents\FixedDocument.cs (4)
207void IFixedNavigate.NavigateAsync(string elementID) 220UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 261uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage); 275uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage);
src\Framework\System\Windows\Documents\FixedHyperlink.cs (3)
86IFixedNavigate fixedNavigate = ns.Content as IFixedNavigate; 106targetElement = ((IFixedNavigate)ElementHost).FindElementByID(elementID, out rootFixedPage) as FrameworkElement;
src\Framework\System\Windows\Documents\FixedPage.cs (2)
859void IFixedNavigate.NavigateAsync(string elementID) 865UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)