Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在没有 URI 的情况下在 Windows Phone 中显示 HTML 正文的内容?我有文本,但我无法在普通文本框中显示它,因为它有 HTML 标签。
在打印内容之前尝试更改<to<和>to的每个实例。>
<
<
>
>
没关系,我自己解决了
我只是添加了一个进行转换的类,然后在模型中,我将转换后的值返回;
private string _body; public string Body { get { return _body; } set { _body = HTMLHelper.ConvertHtmlToText(value); } }