If I have some text in a String, how can I copy that to the clipboard so that the user can paste it into another window (e.g. from my application to Notepad)?
|
|
You can use System.Windows.Forms.Clipboard.SetText(...) |
||
|
|
|
|
if your string is in a textbox, you can use easily this:
|
||
|
|
|
|
I wish calling SetText were that easy but there are quite a few gotchas that you have to deal with. You have to make sure that the thread you are calling it on is running in the STA. It can sometimes fail with an access denied error then work seconds later without problem - something to do with the COM timing issues in the clipboard. And if your application is accessed over Remote Desktop access to the clipboard is sketchy. We use a centralized method to handle all theses scenarios instead of calling SetText directly. |
||
|
|
|
Clipboard.SetText is what you want |
||
|
|
|
|
System.Windows.Forms.Clipboard.SetText (Winforms) or System.Windows.Clipboard.SetText (WPF) |
||||||
|
|
|
WPF: System.Windows.Clipboard (PresentationCore.dll) Winforms: System.Windows.Forms.Clipboard Both have a static SetText method. |
|||
|
|
