-
Notifications
You must be signed in to change notification settings - Fork 0
WI01110087 - Error creating window handle. #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1050,7 +1050,7 @@ private void OnFrameChanged(object? o, EventArgs e) | |
| } | ||
|
|
||
| // Handle should be created, before calling the BeginInvoke. | ||
| if (InvokeRequired && IsHandleCreated) | ||
| if (IsHandleCreated && InvokeRequired) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wow in that thread Microsoft just fixed by changing the if condition and not re-evaluating that the property has side effects. Might be worth for us to remember that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not necessarily side-effects. Problem here was, that we checked first if an And that was exactly, what has happened every now and then: No Handle --> Hope the helps to shed a bit of light on this fix! Happy weekend! Klaus |
||
| { | ||
| lock (_internalSyncObject) | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does that need to change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"latestFeature" will make the build failure, please check the failed result of master build, and the discussion in the teams channel