Windows Phone 8 Web浏览器控件无法正常工作

时间:2013-03-06 21:06:50

标签: vb.net xaml windows-phone-8 webbrowser-control windows-phone

我正在尝试导航到某个网址但是网页浏览器控件显示空白页面或显示页面无法找到错误。这是我的代码:

Private Sub qwb_Loaded(sender As Object, e As RoutedEventArgs) Handles qwb.Loaded
    NavigationContext.QueryString.TryGetValue("url", url)
    Dim urltonav = New Uri(url, UriKind.RelativeOrAbsolute)
    qwb.Navigate(urltonav)
End Sub

PS:网址为http://www.mobile.quora.com。在Page1_Loaded事件下加载页面也不起作用。

这是具有Web浏览器控件的页面的XAML代码:

<phone:PhoneApplicationPage
    x:Class="MyApp.Page1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    mc:Ignorable="d"
    shell:SystemTray.IsVisible="True">

       <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

               <StackPanel Grid.Row="0" Margin="12,17,0,28"/>
        <phone:WebBrowser x:Name="qwb" HorizontalAlignment="Left" VerticalAlignment="Top" Grid.RowSpan="2" Height="768" Width="480" IsScriptEnabled="True"/>

         </Grid>

</phone:PhoneApplicationPage>

我正在尝试使用WiFi在设备上运行应用程序而不是模拟器。操作系统版本是Windows Phone 8,我有Visual Studio 2012.我认为这不是网络问题。我甚至尝试使用.Source属性而不是Navigate,但它也不起作用。

2 个答案:

答案 0 :(得分:1)

您可能打算访问http://mobile.quora.com(没有www)

答案 1 :(得分:0)

你能显示你的网址吗?

  • 如果它是html页面,那么你应该把它放在你的解决方案的文件夹旁边并写下

    WebBrowser1.Navigate(new Uri(“ch51130.html”,UriKind.Relative));

  • 如果它是简单的网址,如www.google.com那么

    Uri uri = new Uri(“http://www.google.co.in”);