0
我正在開發具有一些URL-s的Windows應用商店應用程序。我只是想達到如果我點擊其中的一個,我的應用程序將切換到Internet Explorer。在Windows Store應用程序中執行命令
有沒有辦法做到這一點?
的Sándor
我正在開發具有一些URL-s的Windows應用商店應用程序。我只是想達到如果我點擊其中的一個,我的應用程序將切換到Internet Explorer。在Windows Store應用程序中執行命令
有沒有辦法做到這一點?
的Sándor
// The URI to launch
var uriToLaunch = "http://www.bing.com";
// Create a Uri object from a URI string
var uri = new Windows.Foundation.Uri(uriToLaunch);
Windows.System.Launcher.launchUriAsync(uri).then(
function (success) {
if (success) {
// URI launched
} else {
// URI launch failed
}
});
這是否做到這一點?