I have a WPF application that consumes a SharePoint list using Client Object Model.
The customer wants to be able to fill in one of the fields with Rich Text. This includes formatting like bold/color/font type/etc. It also includes hyperlinks.
In information I get from SharePoint is stored in a string, and looks something like this:
<div class=\"ExternalClass82C42B1E597D49188F88ECA8C4EEB083\"><p>Ticker Item 3 Body<span style=\"color:#000000\"></span>y<</p></div>
When I use the advise I found here: Can I bind HTML to a WPF Web Browser Control?
It comes out looking like this:
Ticker Item 3 Body​
What's up with the little "​" at the end? Is there a correct way of showing Rich Text in my WPF app that includes clickable hyper links and formatting?
Thanks in advance.