Replies: 1 comment 15 replies
-
Can you clarify what you mean by this? |
Beta Was this translation helpful? Give feedback.
15 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.
-
In my app I create winforms cefsharp browsers outside of the main thread. I use the following code to create form for hosting them (each separate browser is hosted in separate tabpage of tabcontrol in the form):
`private void CreateForm()
{
Form = new Form1( manualResetEvent);
Form.ProceedButtonClicked += (_, browser) =>
{
browserWrapperDictionary[browser].WaitingForUserAction = false;
};
However I found that when another browser is created form with browser steals focus from my main form and appears to be on top of this form. How can I avoid that?
My OS is Windows7 64x , VS 2019 installed. I use Winforms Cefsharp version, .NET 4.5.2 . Cef version is 90.6.50.0
Beta Was this translation helpful? Give feedback.
All reactions