-
Compare with the native Chrome browser, it seems to CefSharp wpf load web slowly even I can aware of the low speed by my eyes, any one knows how to fast these? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The If raw performance is all you care about then switch to the By default You can remove this command line arg, look something like: var cefSettings = new CefSettings();
settings.CefCommandLineArgs.Remove("disable-site-isolation-trials"); |
Beta Was this translation helpful? Give feedback.
The
WPF
version is slower than theWinForms
or CefSharp.Wpf.HwndHost versions as it is an actualWPF
control rather than aWindowsFormsHost
/HwndHost
. See https://github.com/cefsharp/CefSharp/wiki/General-Usage#offscreen-rendering-osrIf raw performance is all you care about then switch to the
CefSharp.Wpf.HwndHost
version (doesn't support transparency etc).By default
Site Isolation Trials
are currently disabled (issue #2967), so websites that have lots of frames of different origins will load slower.You can remove this command line arg, look something like: