LaunchUriAsync在Windows 8.1上不起作用

时间:2015-07-28 15:25:57

标签: c++ windows windows-phone-8.1

我正在尝试使用Windows 8.1 / Windows Phone 8.1通用C ++应用程序上的默认应用程序打开外部链接,但遗憾的是它不起作用。它也不会崩溃,这里是代码(来自Microsoft站点):

auto uri = ref new Windows::Foundation::Uri("http://www.bing.com");

void MainPage::DefaultLaunch()
{
   // Launch the URI
   concurrency::task<bool> launchUriOperation(Windows::System::Launcher::LaunchUriAsync(uri));
   launchUriOperation.then([](bool success)
   {
      if (success)
      {
         // URI launched
      }
      else
      {
         // URI launch failed
      }
   });
}

任何想法可能是什么?我有Internet客户端功能。

0 个答案:

没有答案