Implemented interface member:
property
DocumentViewerOwner
MS.Internal.Documents.IDocumentScrollInfo.DocumentViewerOwner
16 references to DocumentViewerOwner
PresentationFramework (16)
MS\Internal\Documents\DocumentGrid.cs (11)
1281DocumentViewerOwner.Focus(); // text editor needs to be focused when cleared 1284DocumentViewerOwner.IsSelectionEnabled = false; 1301DocumentViewerOwner.IsSelectionEnabled = true; 2512if (DocumentViewerOwner != null) 2514DocumentViewerOwner.InvalidateDocumentScrollInfo(); 2524Invariant.Assert(DocumentViewerOwner != null, "DocumentViewerOwner cannot be null."); 2526if (DocumentViewerOwner != null) 2528DocumentViewerOwner.InvalidatePageViewsInternal(); 2529DocumentViewerOwner.ApplyTemplate(); 3074if (DocumentViewerOwner != null) 3076return DocumentViewerOwner.TextEditor;
MS\Internal\Documents\DocumentGridContextMenu.cs (4)
82if (!(documentGrid.DocumentViewerOwner is DocumentApplicationDocumentViewer)) 86if (documentGrid.DocumentViewerOwner.ContextMenu != null || documentGrid.DocumentViewerOwner.ScrollViewer.ContextMenu != null) 207menuItem.CommandTarget = dg.DocumentViewerOwner; // the text editor expects the commands to come from the DocumentViewer
System\Windows\Documents\RubberbandSelector.cs (1)
70_uiScope = ((DocumentGrid)scope).DocumentViewerOwner;