3 implementations of IFixedNavigate
PresentationFramework (3)
System\Windows\Documents\DocumentSequence.cs (1)
34public class FixedDocumentSequence : FrameworkContentElement, IDocumentPaginatorSource, IAddChildInternal, IServiceProvider, IFixedNavigate, IUriContext
System\Windows\Documents\FixedDocument.cs (1)
52public class FixedDocument : FrameworkContentElement, IDocumentPaginatorSource, IAddChildInternal, IServiceProvider, IFixedNavigate, IUriContext
System\Windows\Documents\FixedPage.cs (1)
48public sealed class FixedPage : FrameworkElement, IAddChildInternal, IFixedNavigate, IUriContext
12 references to IFixedNavigate
PresentationFramework (12)
System\Windows\Documents\DocumentSequence.cs (3)
150void IFixedNavigate.NavigateAsync(string elementID) 163UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 194uiElementRet = ((IFixedNavigate)childFixedDoc).FindElementByID(elementID, out rootFixedPage);
System\Windows\Documents\FixedDocument.cs (4)
195void IFixedNavigate.NavigateAsync(string elementID) 208UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage) 249uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage); 263uiElementRet = ((IFixedNavigate)fixedPage).FindElementByID(elementID, out rootFixedPage);
System\Windows\Documents\FixedHyperlink.cs (3)
82IFixedNavigate fixedNavigate = ns.Content as IFixedNavigate; 102targetElement = ((IFixedNavigate)ElementHost).FindElementByID(elementID, out rootFixedPage) as FrameworkElement;
System\Windows\Documents\FixedPage.cs (2)
828void IFixedNavigate.NavigateAsync(string elementID) 834UIElement IFixedNavigate.FindElementByID(string elementID, out FixedPage rootFixedPage)