Windows 8 邮件点击

当我们在做Windows8 应用程序的时候,很多时候会在设置里面添加个人邮箱,往往我们希望可以点击

我们可以这样做:

 

private async void MailButton_Click_1(object sender, RoutedEventArgs e)
{
// Create the URI to launch from a string.
var uri = new Uri("mailto:mymail@domain.com?subject=Subject of mail");

 

// Launch the URI.
bool success = await Windows.System.Launcher.LaunchUriAsync(uri);
}

 

posted on 2012-10-11 19:18  小二黑  阅读(148)  评论(0编辑  收藏  举报

导航