-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Upgrading from CefSharp 1
Alex Maitland edited this page Mar 10, 2015
·
4 revisions
Things to note when Upgrading from CefSharp 1
- Renamed
WebView
toChromiumWebBrowser
- Renamed
LoadCompleted
toFrameLoadEnd
- Renamed
CEF
toCef
- Renamed
CefSharp.Settings
toCefSettings
- Change BrowserSettings initialization
webView = new WebView(url, browserSettings);
to this
webView = new ChromiumWebBrowser(url);
webView.BrowserSettings = browserSettings;
- Rename
ExecuteScript
toExecuteScriptAsync
- No more
webView.PropertyChanged
(Use individual events inWinForms
or DataBinding inWPF
)
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