13 references to TextEditorCopyPaste
PresentationFramework (13)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
126TextEditorCopyPaste.Copy(this.TextEditor, false); 134TextEditorCopyPaste.Cut(this.TextEditor, false); 143TextEditorCopyPaste.Paste(this.TextEditor);
System\windows\Documents\TextEditor.cs (1)
359TextEditorCopyPaste._RegisterClassHandlers(controlType, acceptsRichContent, readOnly, registerEventListeners);
System\windows\Documents\TextEditorCopyPaste.cs (3)
282DataObject dataObject = TextEditorCopyPaste._CreateDataObject(This, /*isDragDrop:*/false); 328DataObject dataObject = TextEditorCopyPaste._CreateDataObject(This, /*isDragDrop:*/false); 394if (TextEditorCopyPaste._DoPaste(This, dataObject, /*isDragDrop:*/false))
System\windows\Documents\TextEditorDragDrop.cs (4)
171IDataObject dataObject = TextEditorCopyPaste._CreateDataObject(_textEditor, /*isDragDrop:*/true); 579e.Handled = TextEditorCopyPaste._DoPaste(_textEditor, e.Data, /*isDragDrop:*/true); 784if (TextEditorCopyPaste.GetPasteApplyFormat(This, e.Data) == string.Empty) 832if (TextEditorCopyPaste.GetPasteApplyFormat(This, e.Data) == string.Empty)
System\Windows\Documents\TextRangeBase.cs (2)
1531string rtfText = TextEditorCopyPaste.ConvertXamlToRtf(xamlText, wpfPayloadMemory); 1582MemoryStream memoryStream = TextEditorCopyPaste.ConvertRtfToXaml(rtfText);