Closed dongawli closed 8 years ago
It's important to remember that CefSharp
is just a wrapper around the Chromium Embedded Project (CEF)
, the upstream CEF
forum is a valuable resource. Also CEF
has it's own Issue Tracker. Please take the time to research your own problem, including Googling
, searching on ceforum
, etc.
Debug.log
file? (Should be located in your apps executing folder by default)chromium
as a keyword).cefclient
? (cefclient
is the reference implementation provided by CEF
)cefclient
?CEF
your actually using, easiest way is to check your packages.config
file, look for the cef.redist.x86
package, it's version will be something like 3.2526.1362
, that's the exact version of CEF
you'll need to download for comparison. You can also open chrome://version
in the browser to determine the version.Branch
you require, for the example above the branch is 2526
, all the versions follow a similar patternWindows 32bit
or Windows 64bit
item, if you don't see the exact version, then click more revisions
WPF/Offscreen
or WinForms
? This next part is key
cefclient --multi-threaded-message-loop --off-screen-rendering-enabled
cefclient --multi-threaded-message-loop
I am using the CEF Sharp library in my WPF project since long time (v1.25.7).
@dongawli That version hasn't been supported in years. Latest supported version is 51.0.0
. If you can reproduce the problem you'll need to report it to the CEF
project.
I am using the CEF Sharp library in my WPF project since long time (v1.25.7). On one of the client machine, I am facing issue that CEFSharp browser shows the random page in between continuously. Please see the video for same - https://hub.mangoapps.com/sf/NzMwNzlfMTE2OTA0MA.
This is happening only on one machine. Once application exit and relaunched, its work perfectly. I've checked and added debug logs as well to check whether page is getting load or not. But no load, PropertyChanged method get called continuously.
Thank you!!!