In WindowsForms i use this samlpe code:
textBox.Paste("some text");
Is there a TextBox method with the same function in WPF? Or there is a nice workaround?
|
|
Use the Clipboard class:
or use the SelectedText property of the textbox:
|
||||
|
|||
|
|