I have a text which may contain some special characters like <b></b>
or a link. I want the user to be able to click on the link and open it. TextBlock
or RichTextBox
seems doesn't show links in a proper way:
<RichTextBox >
<Paragraph>
click here: http://www.google.com
</Paragraph>
</RichTextBox>
How can I show a text like that in a page?
Update: seems my question isn't clear. I ask a server for content and it returns back to me something like this:
from <b><i><a href="http://www.google.com" rel=nofollow> lorem ipsom
NPR: tapped in front of you probably know Bill Gates...
I want to show this in a WINDOWS PHONE page. TextBlock
doesn't render it well. how can I show it human readable?