当我导航到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
}