Skip to content

Upgrading from CefSharp 1

Alex Maitland edited this page Mar 10, 2015 · 4 revisions

Things to note when Upgrading from CefSharp 1

  • Renamed WebView to ChromiumWebBrowser
  • Renamed LoadCompleted to FrameLoadEnd
  • Renamed CEF to Cef
  • Renamed CefSharp.Settings to CefSettings
  • Change BrowserSettings initialization
webView = new WebView(url, browserSettings);
to this 
webView = new ChromiumWebBrowser(url); 
webView.BrowserSettings = browserSettings;
  • Rename ExecuteScript to ExecuteScriptAsync
  • No more webView.PropertyChanged (Use individual events in WinForms or DataBinding in WPF)

Your problem not listed here? Check out https://github.com/cefsharp/CefSharp/issues?q=is%3Aissue+label%3Acef1-cef3-upgrade or try searching on the CefSharp Google Group