Is there an easy way to convert HTML to display in the new Windows Phone 7.1 (Mango) RichTextBox control. I'm mostly concerned about retaining links and images without using a web browser control.

thanks, Sam

link|improve this question
By the way, this class exists in Android SDK. There remains one thing: to wait until someone converts it from java to C#. – vorrtex Sep 8 '11 at 13:17
@vorrtex got a link to the java code for this then? – Matt Lacey Sep 8 '11 at 22:19
@Matt Lacey Here is it: grepcode.com/file/repository.grepcode.com/java/ext/… – vorrtex Sep 9 '11 at 8:03
Did you get anywhere with this? I need this functionality and am considering writing my own parser - but that sounds pretty awful – William Melani Feb 22 at 0:13
The dates match up too well -- looks like this is yours htmltorichtextbox.codeplex.com/releases/view/72960 . If it is, thanks! works great. – William Melani Feb 23 at 23:29
feedback

1 Answer

I would use HTML Agility pack to parse the HTML and transform each type of node in the equivalent in the Document namespace: http://htmlagilitypack.codeplex.com/

You need to handle the nested elements and depending of the level of conformity of the HTML, handling bad formatted content can be hard but HA is a good library.

There's a sample in the source code I think.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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