public class LifeSpanHandler : CefSharp.ILifeSpanHandler { public virtual bool OnBeforePopup(IWebBrowser browser, string sourceUrl, string targetUrl, ref int x, ref int y, ref int width, ref int height) { // Preserve new windows from being opened return true; }
public virtual void OnBeforeClose(IWebBrowser browser) { // DO NOTHING } }