I'm displaying a list of data in an ItemsControl. I'm binding my ItemsControl to an ObservableCollection of a ViewModel representing each item. In the item's ViewModel, there is a property containing HTML as a string, which I'd like to display as rich text as in a WebBrowser control.
I'm relatively new to WP7, so I'm looking up how to handle this. What I've found so far is that I need a WebBrowser control and call NavigateToString on it. My problem is that this needs to be displaying as a list item which I have defined in a DataTemplate. Is there a way to handle this with bindings? Is there another way besides WebBrowser to display strings with HTML formatting?