URL に移動しようとしていますが、Web ブラウザー コントロールに空白のページが表示されるか、ページが見つからないというエラーが表示されます。これが私のコードです:
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: URL は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が機能しているエミュレーターではなく、デバイスでアプリを実行しようとしています。OS のバージョンは Windows Phone 8 で、Visual Studio 2012 を使用しています。ネットワークに問題はないと思います。Navigate の代わりに .Source プロパティを使用しようとしましたが、機能しません。