Implemented interface member:
property
DocumentViewerOwner
MS.Internal.Documents.IDocumentScrollInfo.DocumentViewerOwner
1 write to DocumentViewerOwner
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2062DocumentViewerOwner = this
16 references to DocumentViewerOwner
PresentationFramework (16)
MS\Internal\Documents\DocumentGrid.cs (11)
1274DocumentViewerOwner.Focus(); // text editor needs to be focused when cleared 1277DocumentViewerOwner.IsSelectionEnabled = false; 1294DocumentViewerOwner.IsSelectionEnabled = true; 2510if (DocumentViewerOwner != null) 2512DocumentViewerOwner.InvalidateDocumentScrollInfo(); 2522Invariant.Assert(DocumentViewerOwner != null, "DocumentViewerOwner cannot be null."); 2524if (DocumentViewerOwner != null) 2526DocumentViewerOwner.InvalidatePageViewsInternal(); 2527DocumentViewerOwner.ApplyTemplate(); 3072if (DocumentViewerOwner != null) 3074return 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;