为什么webBrowser没有在Windows Phone 7模拟器中显示网页?

时间:2013-01-25 05:23:56

标签: .net windows-phone-7 xaml webbrowser-control windows-phone-7-emulator

Windows Phone 7中的 webBrowser未显示网页。它没有显示任何错误并显示空白页面。我试图打开google.com页面。代码如下:

private void button1_Click(object sender,RoutedEventArgs e)        {            webBrowser1.Navigate(new Uri(“http://www.google.com”,UriKind.RelativeOrAbsolute));         }

// xaml code

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,164">
            <phone:WebBrowser HorizontalAlignment="Left" Source="{Binding Path=WebAddress}" Margin="9,0,0,0" Name="webBrowser1" VerticalAlignment="Top" Height="576" Width="441" IsScriptEnabled="True"/>
        </Grid>
        <Button Content="Button" Grid.Row="1" Height="72" HorizontalAlignment="Left" Margin="158,591,0,0" Name="button1" VerticalAlignment="Top" Width="160" Click="button1_Click" />
    </Grid>

2 个答案:

答案 0 :(得分:0)

您似乎正在尝试绑定WebBrowser.Source属性。这不是依赖属性,因此不可绑定。请参阅以下两点:

databind the Source property of the WebBrowser in WPF

答案 1 :(得分:0)

这是显示驱动程序的问题。我系统中的驱动程序是WDDM 1.0。