在主浏览器cefsharp中打开_blank链接

时间:2018-09-05 06:57:01

标签: javascript c# cefsharp

当我导航到instagram并在新浏览器中单击链接打开链接时,我在winform项目中使用cefsharp浏览器v65。如何解决呢?在我的defult浏览器中打开链接。 如果找到此代码但对我不起作用

    public virtual bool OnBeforePopup(IWebBrowser browser, string url, ref int x, ref int y, ref int width, ref int height)
{
    // Preserve new windows to be opened and load all popup urls in the same browser view
    browser.Load(url);
    //
    return true;
}

public virtual void OnBeforeClose(IWebBrowser browser)
{
    // DO NOTHING
}

0 个答案:

没有答案