是否可以将附件附加到Windows 8 metro应用程序中的电子邮件应用程序?

时间:2012-11-06 08:31:25

标签: microsoft-metro windows-runtime winrt-xaml email-attachments

我以这种方式启动mailto应用程序: -

 using Windows.System;
    //starts the default mail app with a subject, cc, bcc, and body
    Launcher.LaunchUriAsync(new Uri("mailto:windows8devs@almostbeta.com?subject=Code Request&cc=kevin@almostbeta.com&bcc=admin@almostbeta.com&body=Hi!"));

1)我们不能在Windows 8中将附件附加到mailto应用程序吗?

2)如果是这样,请让我知道将会有什么工作?

提前致谢。

1 个答案:

答案 0 :(得分:1)

不,您无法在Windows 8中将文件附加到邮件应用程序。

您需要使用共享。请看一下:http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh871371.aspx,以获取有关如何共享文件的示例。