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)
1270DocumentViewerOwner.Focus(); // text editor needs to be focused when cleared 1273DocumentViewerOwner.IsSelectionEnabled = false; 1290DocumentViewerOwner.IsSelectionEnabled = true; 2497DocumentViewerOwner?.InvalidateDocumentScrollInfo(); 2506Invariant.Assert(DocumentViewerOwner != null, "DocumentViewerOwner cannot be null."); 2508if (DocumentViewerOwner != null) 2510DocumentViewerOwner.InvalidatePageViewsInternal(); 2511DocumentViewerOwner.ApplyTemplate(); 3056if (DocumentViewerOwner != null) 3058return 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;