3 implementations of IFixedNavigate
PresentationFramework (3)
System\Windows\Documents\DocumentSequence.cs (1)
22public class FixedDocumentSequence : FrameworkContentElement, IDocumentPaginatorSource, IAddChildInternal, IServiceProvider, IFixedNavigate, IUriContext
System\Windows\Documents\FixedDocument.cs (1)
40public class FixedDocument : FrameworkContentElement, IDocumentPaginatorSource, IAddChildInternal, IServiceProvider, IFixedNavigate, IUriContext
System\Windows\Documents\FixedPage.cs (1)
39public sealed class FixedPage : FrameworkElement, IAddChildInternal, IFixedNavigate, IUriContext
12 references to IFixedNavigate
PresentationFramework (12)
System\Windows\Documents\DocumentSequence.cs (3)
138void IFixedNavigate.NavigateAsync(string elementID) 151UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 182uiElementRet = ((IFixedNavigate)childFixedDoc).FindElementByID(elementID, out rootFixedPage);
System\Windows\Documents\FixedDocument.cs (4)
183void IFixedNavigate.NavigateAsync(string elementID) 196UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 237uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage); 251uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage);
System\Windows\Documents\FixedHyperlink.cs (3)
72IFixedNavigate fixedNavigate = ns.Content as IFixedNavigate; 92targetElement = ((IFixedNavigate)ElementHost).FindElementByID(elementID, out rootFixedPage) as FrameworkElement;
System\Windows\Documents\FixedPage.cs (2)
821void IFixedNavigate.NavigateAsync(string elementID) 827UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)