我正在项目中使用 CEF Sharp WPF Web 浏览器。我使用的是 37 版本,现在升级到 65 版本。 现在我收到以下错误。
'ChromiumWebBrowser' does not contain a definition for 'Reload' and no extension method 'Reload' accepting a first argument of type 'ChromiumWebBrowser' could be found (are you missing a using directive or an assembly reference?)
有人可以让我知道 API 是否被删除或我需要参考任何其他 DLL?
Reload()
是ChromiumWebBrowser
类实现的IWebBrowser
接口的扩展方法。
如果在代码文件中添加以下 using 指令,它应该编译(在版本 65.0.1 中测试(:
using CefSharp;
法典:
CefSharp.Wpf.ChromiumWebBrowser chromiumWebBrowser = new CefSharp.Wpf.ChromiumWebBrowser();
//...
chromiumWebBrowser.Reload();