显示 - 带有笑脸的文字在Windows Phone 8.1 C#中(表情符号看起来像 - 。)

时间:2015-10-03 08:48:57

标签: c# .net windows windows-phone-8.1 textblock

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

我可以用这个删除HTML标签,

string get_title_with_noHTML = Regex.Replace(get_title,@“< [^>] +> |”,“”)。Trim();

但笑脸就是这样。在冲浪时不能为笑脸获得解决方案。

这是Windows手机屏幕拍摄: enter image description here

表情看起来像红色方块区域。 我用RichTextblock尝试了这个,但richtextblock没有text属性。

我尝试使用此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);
 }

但结果并不准确。

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

1 个答案:

答案 0 :(得分:1)

我得到了解决方案。

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