Implemented interface member:
property
DocumentViewerOwner
MS.Internal.Documents.IDocumentScrollInfo.DocumentViewerOwner
1 write to DocumentViewerOwner
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2008DocumentViewerOwner = this
15 references to DocumentViewerOwner
PresentationFramework (15)
MS\Internal\Documents\DocumentGrid.cs (10)
1274DocumentViewerOwner.Focus(); // text editor needs to be focused when cleared 1277DocumentViewerOwner.IsSelectionEnabled = false; 1294DocumentViewerOwner.IsSelectionEnabled = true; 2501DocumentViewerOwner?.InvalidateDocumentScrollInfo(); 2510Invariant.Assert(DocumentViewerOwner != null, "DocumentViewerOwner cannot be null."); 2512if (DocumentViewerOwner != null) 2514DocumentViewerOwner.InvalidatePageViewsInternal(); 2515DocumentViewerOwner.ApplyTemplate(); 3060if (DocumentViewerOwner != null) 3062return DocumentViewerOwner.TextEditor;
MS\Internal\Documents\DocumentGridContextMenu.cs (4)
74if (!(documentGrid.DocumentViewerOwner is DocumentApplicationDocumentViewer)) 78if (documentGrid.DocumentViewerOwner.ContextMenu != null || documentGrid.DocumentViewerOwner.ScrollViewer.ContextMenu != null) 201menuItem.CommandTarget = dg.DocumentViewerOwner; // the text editor expects the commands to come from the DocumentViewer
System\Windows\Documents\RubberbandSelector.cs (1)
60_uiScope = ((DocumentGrid)scope).DocumentViewerOwner;