应用程序中的Web链接(internet)导航错误
本文关键字:internet 导航 错误 链接 Web 应用程序 | 更新日期: 2023-09-27 17:51:24
我想在按下按钮时导航到web链接。我认为这与导航到XAML页面的想法是一样的,但我把一个网页。
简单页面导航:
NavigationService.Navigate(new Uri("Page.xaml", UriKind.Relative));
我写的NavigationService.Navigate(new Uri("http://www.youtube.com", UriKind.Absolute));
但是当我调试时,应用程序崩溃了
我正在使用c#。(Visual Studio 2012 Express for windows phone 8)
你说过:
我认为这与导航到XAML页面的想法是一样的,但我放一个网页。
但是你不能使用NavigationService来导航到网页。
我在我的一个项目中使用了这种方法:
<HyperlinkButton Content="YouTube" NavigateUri="http://youtube.com" TargetName="_blank" />
关键字是TargetName
属性。必须设置为"_blank
"。这类似于WebBrowserTask。
当然你也可以这样做:
WebBrowserTask webBrowserTask = new WebBrowserTask();
webBrowserTask.Uri = new Uri("http://www.youtube.com", UriKind.Absolute);
webBrowserTask.Show();