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