1

调用 Share charm 的邮件功能时,我需要设置默认电子邮件地址。具体来说,我已经知道收件人的电子邮件地址。

因此,我想用这些数据填充 mailto 地址,而不是强制用户手动插入这些数据。

有什么建议么?

    public void OnHtmlRequested(DataRequestedEventArgs args, string title, string html)
    {
        args.Request.Data.Properties.Title = title;
        args.Request.Data.Properties.Description = "my description";

        args.Request.Data.SetHtmlFormat(HtmlFormatHelper.CreateHtmlFormat(html));
    }
4

0 回答 0