Replies: 1 comment
-
Add the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
0
I need to use CEFSharp offscreen and standard Browser inside the same application... but I'm facing issue in initialization. I'm using something like that:
OffScreenBrowser = new biCefBrowser(true);
await OffScreenBrowser.InitializeBrowser(HTMLHome);
BiBrowser = new biCefBrowser(false);
await BiBrowser.InitializeBrowser(HTMLHome);
SupportWindow.RootGrid.Children.Add(BiBrowser.WpfBrowser);
But everything hangs.
I've already tried to split objects and force single CEF.Initialize
Beta Was this translation helpful? Give feedback.
All reactions