首页 > 代码库 > 在WPF的WebBrowser控件中屏蔽脚本错误的提示

在WPF的WebBrowser控件中屏蔽脚本错误的提示

在WPF中使用WebBrowser控件显示网页时,经常会报脚本错误的提示,如何屏蔽掉这些错误提示呢。方法是定义如下方法:

        public void SuppressScriptErrors(WebBrowser wb, bool Hide)        {            FieldInfo fiComWebBrowser = typeof(WebBrowser).GetField("_axIWebBrowser2", BindingFlags.Instance | BindingFlags.NonPublic);            if (fiComWebBrowser == null) return;            object objComWebBrowser = fiComWebBrowser.GetValue(wb);            if (objComWebBrowser == null) return;            objComWebBrowser.GetType().InvokeMember("Silent", BindingFlags.SetProperty, null, objComWebBrowser, new object[] { Hide });        }

 

然后调用此方法:

        private void web1_Navigated(object sender, NavigationEventArgs e)        {            SuppressScriptErrors((WebBrowser)sender, true);        }