0

我想从我的 XAML 应用程序中打开外部网络浏览器,类似于:想要在 WP7 的外部浏览器中打开链接

我似乎找不到 WebBrowserTask 对象:

Dim wbt As New WebBrowserTask()
wbt.Uri = New Uri("http://xxx.xxx.com/xxx.aspx")
wbt.Show()

WindowsRT/XAML 还有其他方法吗?

谢谢!

4

2 回答 2

1

您应该使用Launcher 类

Dim uri As New Uri("http://www.bing.com")

Async Sub DefaultLaunch()

   ' Launch the URI
   Dim success = await Windows.System.Launcher.LaunchUriAsync(uri)

   If success Then
      ' URI launched
   Else
      ' URI launch failed
   End If

End Sub
于 2012-12-29T19:02:22.987 回答
1
await Launcher.LaunchUriAsync(new Uri(uri));
于 2012-12-29T19:02:23.807 回答