阻止 GUI 线程冻结
我有一个使用BackgroundWorker(在其中调用“Parallel.For”)的C#(.NET 4)GUI(WPF)程序
,我注意到GUI线程总是冻结,以便内核可以在其他线程上工作。
GUI 线程没有要执行的任务,因此这不是我遇到 GUI 速度慢的原因。
谢谢
I have a C# (.NET 4), GUI (WPF) program that uses BackgroundWorker (that calls a "Parallel.For" in it)
and i noticed that the GUI thread is always freezing so that the cores can work on the other threads.
The GUI Thread has no tasks to perform so that's not the reason I'm experiencing slow GUI.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 UI 线程正在执行 Parallel.For ,它将阻塞,直到所有并行线程完成其工作!
If the UI thread is executing the Parallel.For it will block until all parallel thread have finished their work!