-
-
Notifications
You must be signed in to change notification settings - Fork 521
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
Maximized RibbonWindow state error after long IO operation. #159
Comments
You can check this test. Thank you! |
Your problem seems to be the same as in #80. As far as I know the only known workaround is to not do heavy work on the UI thread. |
There seems to be another workaround: The window is rendered correctly again, if you set the
I've tested this on Windows 7 with .Net 4.5.1 and it worked fine, but I recommend to outsource long running operations into background threads anyway. That way your UI doesn't lock up in the first place and users don't think your application has crashed. |
It not always possible to use background threads. |
Yes, heavy work in background thread is a good idea. |
When RibbonWindow is in maximized state, if the RibbonWindow is blocked by a long IO operation, the
maximized RibbonWindow state goes into error after IO completion.
The text was updated successfully, but these errors were encountered: