Implemented interface member:
property
DocumentViewerOwner
MS.Internal.Documents.IDocumentScrollInfo.DocumentViewerOwner
1 write to DocumentViewerOwner
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2004DocumentViewerOwner = this
15 references to DocumentViewerOwner
PresentationFramework (15)
MS\Internal\Documents\DocumentGrid.cs (10)
1264DocumentViewerOwner.Focus(); // text editor needs to be focused when cleared 1267DocumentViewerOwner.IsSelectionEnabled = false; 1281DocumentViewerOwner.IsSelectionEnabled = true; 2488DocumentViewerOwner?.InvalidateDocumentScrollInfo(); 2497Invariant.Assert(DocumentViewerOwner != null, "DocumentViewerOwner cannot be null."); 2499if (DocumentViewerOwner != null) 2501DocumentViewerOwner.InvalidatePageViewsInternal(); 2502DocumentViewerOwner.ApplyTemplate(); 3047if (DocumentViewerOwner != null) 3049return DocumentViewerOwner.TextEditor;
MS\Internal\Documents\DocumentGridContextMenu.cs (4)
73if (!(documentGrid.DocumentViewerOwner is DocumentApplicationDocumentViewer)) 77if (documentGrid.DocumentViewerOwner.ContextMenu != null || documentGrid.DocumentViewerOwner.ScrollViewer.ContextMenu != null) 200menuItem.CommandTarget = dg.DocumentViewerOwner; // the text editor expects the commands to come from the DocumentViewer
System\Windows\Documents\RubberbandSelector.cs (1)
59_uiScope = ((DocumentGrid)scope).DocumentViewerOwner;