在 windows phone 8.1 C# 中显示带有笑脸的 &#8211 文本(笑脸看起来像 &#8211。)

Display &#8211 text with Smileys in windows phone 8.1 C# (smileys are look like &#8211.)

我有一个来自服务器的字符串,其中包含带有 html 标签和笑脸的内容字符串。

我可以用这个去掉 HTML 标签,

字符串 get_title_with_noHTML = Regex.Replace(get_title, @"<[^>]+>| ", "").Trim();

但表情符号是原样。经常冲浪时无法获得笑脸的解决方案。

这是 windows phone 屏幕截图:

笑脸看起来像红色方块区域。 我已经用 RichTextblock 试过了,但是 richtextblock 没有文本 属性.

我尝试使用此 RichTextBlock Example

       var control = sender as RichTextBlock;
      if (control != null)
      {
      control.Blocks.Clear();
      string value = e.NewValue.ToString();

      var paragraph = new Paragraph();
      paragraph.Inlines.Add(new Run {Text = value});
      control.Blocks.Add(paragraph);
 }

但结果并不准确。

我怎样才能得到准确的笑脸?可能的解决方案是什么?提前致谢!

我找到了解决方案。

 string header_dashboard = Windows.Data.Html.HtmlUtilities.ConvertToText(YouStringswith_&#8221);