在 C# webkit.net 浏览器中,如何启用由 JavaScript window.open() 创建的弹出窗口?
我尝试了这些属性:
this.webKitBrowser1.IsScriptingEnabled = true;
this.webKitBrowser1.AllowNewWindows = true;
但什么都没有改变。我也试过这个事件:
this.webKitBrowser1.NewWindowCreated += new WebKit.NewWindowCreatedEventHandler(webKitBrowser1_NewWindowCreated);
但它并没有火起来。