How to simulate Paste in a WPF TextBox?

2.6k Views Asked by At

I have a TextBox in my WPF application which I've added a Paste event to using:

DataObject.AddPastingHandler(elm, new DataObjectPastingEventHandler(OnPaste));

Now I want to trigger the OnPaste event from C# code. How can I do this? I tried calling the Paste() function on the control. The text is pasted in the control, but the OnPaste event is not triggered..:

private static void Foo(TextBox textBox, string pastedText)
{
    Clipboard.SetData(DataFormats.Text, pastedText);
    textBox.Paste();
}
2

There are 2 best solutions below

1
On BEST ANSWER

Invoke the ApplicationCommand Paste:

ApplicationCommands.Paste.Execute(this, pastedText)

Please note that this will not work in partial trust!

0
On

You could do it via reflection. You need to find the private delegate field, then invoke it.

See How to: Hook Up a Delegate Using Reflection.