Debug script block for wpf browser control
1 answer
The problem here is that WPF WebBrowser
did not implement this property as it did in control 2.0.
Best to use WindowsFormsHost
in your WPF application and use the 2.0 WebBrowser
: property SuppressScriptErrors
. Even then, you'll need a full trust app to do this.
Not that perfect, but it is pretty much the only option at the moment.
+1
a source to share