13 references to TextEditorCopyPaste
PresentationFramework (13)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (3)
152TextEditorCopyPaste.Copy(this.TextEditor, false); 166TextEditorCopyPaste.Cut(this.TextEditor, false); 175TextEditorCopyPaste.Paste(this.TextEditor);
src\Framework\System\windows\Documents\TextEditor.cs (1)
380TextEditorCopyPaste._RegisterClassHandlers(controlType, acceptsRichContent, readOnly, registerEventListeners);
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (3)
377DataObject dataObject = TextEditorCopyPaste._CreateDataObject(This, /*isDragDrop:*/false); 446DataObject dataObject = TextEditorCopyPaste._CreateDataObject(This, /*isDragDrop:*/false); 522if (TextEditorCopyPaste._DoPaste(This, dataObject, /*isDragDrop:*/false))
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (4)
199IDataObject dataObject = TextEditorCopyPaste._CreateDataObject(_textEditor, /*isDragDrop:*/true); 608e.Handled = TextEditorCopyPaste._DoPaste(_textEditor, e.Data, /*isDragDrop:*/true); 829if (TextEditorCopyPaste.GetPasteApplyFormat(This, e.Data) == string.Empty) 877if (TextEditorCopyPaste.GetPasteApplyFormat(This, e.Data) == string.Empty)
src\Framework\System\Windows\Documents\TextRangeBase.cs (2)
1556string rtfText = TextEditorCopyPaste.ConvertXamlToRtf(xamlText, wpfPayloadMemory); 1613MemoryStream memoryStream = TextEditorCopyPaste.ConvertRtfToXaml(rtfText);