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.
我想在 Windows 8 上使用邮件客户端共享一些文本,我想在其中显示新行。它在使用时在记事本中正确显示,\r\n但不适SetText用于DataTransferManager.
\r\n
SetText
DataTransferManager
关键是在 HTML 中设置文本,而不是将其作为字符串发送。
假设您要共享的文本在string textToShare; 注意您将发送 HTML 中的字符串,因此您需要将所有换行符替换为<br/>
string textToShare;
<br/>
代替
theRequest.Data.SetText(textToShare);
采用
theRequest.Data.SetHtmlFormat(HtmlFormatHelper.CreateHtmlFormat(textToShare));