2015-10-04 228 views

回答

3

在Windows應用程序中,您無法簡單地打開其他應用程序/程序。 唯一posibility是使用發射器:

Windows.System.Launcher.LaunchUriAsync(new Uri("http://www.google.de")); 

啓動程序查找默認程序/應用程序,它的產生密切相關的URI的方案(在這種情況下的「http://」爲化網頁瀏覽器),並轉發此請致電

+0

use--等待Windows.System.Launcher.LaunchUriAsync(新的URI(「HTTP:// WWW。 google.com「));並使範圍異步 –

0

其他人然後上面你可以去Package.app清單改變起始頁到你想要的URL或通過使用Web控制的另一種方法將源設置爲你需要的URL。

0

使用範圍異步,它會打開鏈接到手機,個人電腦默認的默認瀏覽器UWP

private async void Button_Click(object sender, RoutedEventArgs e) 
    { 
     await Windows.System.Launcher.LaunchUriAsync(new Uri("http://www.fmradiotune.blogspot.com")); 
    } 
相關問題