WebBrowser无法正确显示页面

时间:2018-12-07 05:37:38

标签: c# wpf webbrowser-control

我正在尝试在WebBrowser中使用WPF。我只是使用Navigate这样的方法:

   public MainWindow()
    {
        InitializeComponent();
        browser.Navigate("https://stackoverflow.com/");
    }

首先,它显示了许多与脚本有关的消息:

脚本错误屏幕截图

Screen Shot

然后显示不正确的页面屏幕截图

web browser page Screen Shot

我找到了WPF WebBrowser control - how to suppress script errors?,并使用了以下代码:

 public MainWindow()
    {
        InitializeComponent();
        browser.Navigated += new NavigatedEventHandler(Browser_Navigated);
        browser.Navigate("https://stackoverflow.com/");
    }

    private void Browser_Navigated(object sender, NavigationEventArgs e)
    {
        SetSilent(browser, true);
    }

    public static void SetSilent(WebBrowser browser, bool silent)
    {
        if (browser == null)
            throw new ArgumentNullException("browser");

        // get an IWebBrowser2 from the document
        IOleServiceProvider sp = browser.Document as IOleServiceProvider;
        if (sp != null)
        {
            Guid IID_IWebBrowserApp = new Guid("0002DF05-0000-0000-C000-000000000046");
            Guid IID_IWebBrowser2 = new Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E");

            object webBrowser;
            sp.QueryService(ref IID_IWebBrowserApp, ref IID_IWebBrowser2, out webBrowser);
            if (webBrowser != null)
            {
                webBrowser.GetType().InvokeMember("Silent", BindingFlags.Instance | BindingFlags.Public | BindingFlags.PutDispProperty, null, webBrowser, new object[] { silent });
            }
        }
    }

    [ComImport, Guid("6D5140C1-7436-11CE-8034-00AA006009FA"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    private interface IOleServiceProvider
    {
        [PreserveSig]
        int QueryService([In] ref Guid guidService, [In] ref Guid riid, [MarshalAs(UnmanagedType.IDispatch)] out object ppvObject);
    }

此后,没有错误消息,但是页面仍然不正确。

web browser page Screen Shot

有人知道如何解决此问题吗? 这是xaml代码:

<Window x:Class="MyWebBrowser.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:MyWebBrowser"
    mc:Ignorable="d"
    Height="300" Width="450"
    Title="MainWindow">
<Grid>
    <WebBrowser Name="browser"></WebBrowser>
</Grid>

1 个答案:

答案 0 :(得分:3)

wpf中的Web浏览器控件使用了相当老的IE Web浏览器引擎,因此也就无法显示现代网站也就不足为奇了。您可以导航到http://html5test.com以获取其正在使用的确切IE版本。我建议使用更现代的Web浏览器引擎和包装器来嵌入它。看看https://cefsharp.github.io