How to open a new window in cefsharp?

0

I'm using cefsharp, and I create a window in a window form, so that's fine, it's working fine, but I need it to open a second window, in a second window form ... I call it like this:

Form2 f = new Form2();
f.Show();

And on form2, I do the same thing as on Form1, however it gives me a problem saying that Cef has already been initialized .. So I tried to take this part of initializing Cef:

Cef.Initialize(settings);

Does anyone know if it is possible to start two instances of chrome in different windows Forms .. I can leave one with explorer (Normal webbrowser) and one with chromium, but it would be better to tweak it in the layout if both were with chromium.

    
asked by anonymous 13.06.2018 / 01:14

0 answers