いくつかのURLを持つWindowsストアアプリを開発しています。これらのいずれかをクリックすると、アプリがInternetExplorerに切り替わります。
これを行う方法はありますか?
サンドール
いくつかのURLを持つWindowsストアアプリを開発しています。これらのいずれかをクリックすると、アプリがInternetExplorerに切り替わります。
これを行う方法はありますか?
サンドール
// 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
}
});
これはそれをしますか?