Skip to content
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

Add check for UI thread when using UI controls. #2032

Merged
merged 1 commit into from
Oct 1, 2021

Conversation

cwensley
Copy link
Member

This should make it easier to troubleshoot programming errors where UI code is accessed from background threads. This includes showing message boxes in background threads, which only works on WPF or WinForms.

There are three modes for Application.Instance.UIThreadCheckMode

  • None: Same as before, you won't be notified if you do something wrong things will just not work properly
  • Warning: You'll get warnings written to the console via Trace.WriteLine, default when not debugging
  • Error: An exception will be thrown, default when a debugger is attached

Fixes #2002

@cwensley cwensley merged commit 207caa0 into picoe:develop Oct 1, 2021
@cwensley cwensley added this to the 2.6.0 milestone Oct 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[GTK] Use of MessageBox.Show on different threads is inconsistent
1 participant