13 references to TextEditorCopyPaste
PresentationFramework (13)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
127
TextEditorCopyPaste
.Copy(this.TextEditor, false);
135
TextEditorCopyPaste
.Cut(this.TextEditor, false);
144
TextEditorCopyPaste
.Paste(this.TextEditor);
System\windows\Documents\TextEditor.cs (1)
350
TextEditorCopyPaste
._RegisterClassHandlers(controlType, acceptsRichContent, readOnly, registerEventListeners);
System\windows\Documents\TextEditorCopyPaste.cs (3)
281
DataObject dataObject =
TextEditorCopyPaste
._CreateDataObject(This, /*isDragDrop:*/false);
327
DataObject dataObject =
TextEditorCopyPaste
._CreateDataObject(This, /*isDragDrop:*/false);
393
if (
TextEditorCopyPaste
._DoPaste(This, dataObject, /*isDragDrop:*/false))
System\windows\Documents\TextEditorDragDrop.cs (4)
170
IDataObject dataObject =
TextEditorCopyPaste
._CreateDataObject(_textEditor, /*isDragDrop:*/true);
578
e.Handled =
TextEditorCopyPaste
._DoPaste(_textEditor, e.Data, /*isDragDrop:*/true);
783
if (
TextEditorCopyPaste
.GetPasteApplyFormat(This, e.Data) == string.Empty)
831
if (
TextEditorCopyPaste
.GetPasteApplyFormat(This, e.Data) == string.Empty)
System\Windows\Documents\TextRangeBase.cs (2)
1530
string rtfText =
TextEditorCopyPaste
.ConvertXamlToRtf(xamlText, wpfPayloadMemory);
1581
MemoryStream memoryStream =
TextEditorCopyPaste
.ConvertRtfToXaml(rtfText);