WPF C# CefSharp 导航 URL

WPF C# CefSharp Navigate URL

我想在网络浏览器控件中像 VS 一样导航新的 link,但我不能用 wpf 做到这一点。

这就是为了;

WebBrowser.Navigate("http://www.bing.com");

WPF 中的 CefSharp 是如何完成的?

在cefsharp中,你可以这样做

string navigateUrl = "http://www.bing.com";
ChromiumBrowser.Address = navigateUrl;   //navigates to the URL

//or use Reload method if you want to reload it 
ChromiumBrowser.Reload(true);