Reputation: 1268
I want to allow my users to copy text from a textblock, and repaste it on a textbox.
How can I do this with my application?
Upvotes: 1
Views: 616
Reputation: 4268
Textblock
is not copy-paste-able. You can try using a ReadOnly TextBox
as seen here: WP7 CopyPaste on TextBlocks
.
You could also put it in a WebBrowser
control (provided you have enough content and are willing to suffer the display / performance )
Upvotes: 4