阻止 GUI 线程冻结

发布于 2024-10-31 09:21:28 字数 166 浏览 0 评论 0原文

我有一个使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2024-11-07 09:21:28

如果 UI 线程正在执行 Parallel.For ,它将阻塞,直到所有并行线程完成其工作!

If the UI thread is executing the Parallel.For it will block until all parallel thread have finished their work!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文