13 references to TextEditorCopyPaste
PresentationFramework (13)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
135
TextEditorCopyPaste
.Copy(this.TextEditor, false);
143
TextEditorCopyPaste
.Cut(this.TextEditor, false);
152
TextEditorCopyPaste
.Paste(this.TextEditor);
System\windows\Documents\TextEditor.cs (1)
365
TextEditorCopyPaste
._RegisterClassHandlers(controlType, acceptsRichContent, readOnly, registerEventListeners);
System\windows\Documents\TextEditorCopyPaste.cs (3)
295
DataObject dataObject =
TextEditorCopyPaste
._CreateDataObject(This, /*isDragDrop:*/false);
341
DataObject dataObject =
TextEditorCopyPaste
._CreateDataObject(This, /*isDragDrop:*/false);
407
if (
TextEditorCopyPaste
._DoPaste(This, dataObject, /*isDragDrop:*/false))
System\windows\Documents\TextEditorDragDrop.cs (4)
188
IDataObject dataObject =
TextEditorCopyPaste
._CreateDataObject(_textEditor, /*isDragDrop:*/true);
596
e.Handled =
TextEditorCopyPaste
._DoPaste(_textEditor, e.Data, /*isDragDrop:*/true);
801
if (
TextEditorCopyPaste
.GetPasteApplyFormat(This, e.Data) == string.Empty)
849
if (
TextEditorCopyPaste
.GetPasteApplyFormat(This, e.Data) == string.Empty)
System\Windows\Documents\TextRangeBase.cs (2)
1534
string rtfText =
TextEditorCopyPaste
.ConvertXamlToRtf(xamlText, wpfPayloadMemory);
1585
MemoryStream memoryStream =
TextEditorCopyPaste
.ConvertRtfToXaml(rtfText);