Created
February 4, 2014 10:31
-
-
Save eternaltung/8801267 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private async void Button_Click(object sender, RoutedEventArgs e) | |
{ | |
//直接開啟Skype | |
await Launcher.LaunchUriAsync(new Uri("skype:")); | |
//開啟Skype並撥打給user1 | |
//await Launcher.LaunchUriAsync(new Uri("skype:user1?call")); | |
//開啟Skype並與user1聊天 | |
//await Launcher.LaunchUriAsync(new Uri("skype:user1?chat")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment