What is the best substitute for FlowDocument in Silverlight?
flowdocument, hyperlink, markup, silverlight
Solution
In Silverlight 3 Vectorlight's Free RichTextBox can do a pretty good job of what you need using HTML.
In Silverlight 4 you have the option of using the RichTextBox to represent your content.
Problem
I'm porting an application from WPF to Silverlight and was saddened to read of the lack of FlowDocument support. What is the best way in Silverlight then to display text with markup? I just need the basics, e.g. - bold - italic - hyperlink - colors - font sizes Added: I don't mean a RichTextBox (as in the Vectorlight demo) but a way to format text on the application surface itself, like I can do with FlowDocument in WPF: (source: deviantsart.com)