vote up 4 vote down star
3

I want to make the text displayed in the Witty, an open source Twitter client, selectable. It is currently displayed using a custom textblock. I need to use a TextBlock because I'm working with the textblock's inlines to display and format the @username and links as hyperlinks. A frequent request is to be able to copy-paste the text. In order to do that I need to make the TextBlock selectable.

I tried to get it to work by displaying the text using a read-only TextBox styled to look like a textblock but this will not work in my class because a TextBox does not have inlines. In order words, I can't style or format the text within a TextBox individually like I can with a TextBlock.

Any ideas?

flag

I'll try using the RichTextBox control to see if that'll work. But from prior experience working with the richtextbox is much more involved. – Alan Le Sep 25 '08 at 22:06

2 Answers

vote up 1 vote down

I'm not sure if you can make a TextBlock selectable, but another option would be to use a RichTextBox - it is like a TextBox as you suggested, but supports the formatting you want.

link|flag
This is the route I was planning to take next. thanks – Alan Le Sep 26 '08 at 17:23
I tried doing this, and in the process had to make the RichTextBox bindable with a dependency property. Unfortunately the old flowdocuments aren't being discarded properly and memory is leaking like crazy. Alan, I wonder if you found a way around this? – John Noonan Apr 24 at 5:59
vote up 3 vote down

Create ControlTemplate for the TextBlock and put a TextBox inside with readonly property set.

link|flag
Interesting idea.. I'll give this a try. – Alan Le Sep 26 '08 at 17:22
Let me know if you need any help. cheers! – Jobi Joy Sep 26 '08 at 19:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.