Windows 8 Metro开放网站/ mailto C#

mar*_*yyy 7 c# microsoft-metro windows-8

我很困惑.如何从我的metro应用程序中打开webbrowser中的网站?我该如何打开默认邮件应用程序?

在W7上的WPF中我会跑

Process.Start("mailto://whatever");
Run Code Online (Sandbox Code Playgroud)

提前致谢

Bob*_*van 10

Windows 8中的Metro应用程序不支持Process.Start.它在System.Diagnostics命名空间中不存在.

metro应用程序无法直接启动另一个城域应用程序.

但是,有两种方法可以启动应用程序.您可以通过文件关联或协议处理程序(Windows.System.Launcher.LaunchUriAsyncWindows.System.Launcher.LaunchFileAsync)启动应用程序

这两个都可以解决你的问题.

示例和文档存在于:http://msdn.microsoft.com/en-us/library/windows/apps/windows.system.launcher.aspx

另请查看:http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh779672.aspx