Bind text with links to RichTextBox
问题 I need to bind text which may contain hyperlinks to RichTextBox so it could show text as normal text and links as hyperlinks. For example I have following text: Join us on social networks http://www.facebook.com/ I want that links in a text be hyperlinks so the result in RichTextBox would be like this: Join us on social networks http://www.facebook.com/ 回答1: I implemented what I need using System; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using