如何使用 wpf 调度程序创建多 UI 线程 winforms 应用程序

发布于 2024-12-06 22:40:17 字数 550 浏览 1 评论 0原文

Martin 在这个链接中的第二个答案解释了如何在一个winforms应用程序。此链接解释了wpf 方面。所以我的问题是 - 我们可以在 winforms 应用程序中做到这一点吗?如果没有,为什么?谢谢

更新:我发现这个链接也显示了提到的多个app.run方法下面是亨克。但是它不使用 wpf 调度程序。我想知道在 winforms 中使用 wpf dispacther (我的问题)与多个 app.runs 之间是否存在性能差异

The second answer by Martin in this link explains how the dispatcher can be used in a winforms app. This link explains the wpf side. So my question is - can we do this in a winforms app ? If not, why ? thank you

UPDATE: I have found this link also that shows the multiple app.run method mentioned by Henk below. However it does not use the wpf dispatcher. I wonder if there is a performance diff between using the wpf dispacther in winforms (my question) vs multiple app.runs

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

如果没结果 2024-12-13 22:40:17

无论您做什么,您都将被限制使用 1 个线程(UI 线程)来更新您的窗口(Winforms、WPF、本机代码)。您可以根据需要生成任意数量的工作线程来完成所需的所有数据收集和准备工作,但是您仍然必须使用 UI 线程来执行更新。查看任务或BackgroundWorker 类来完成这项工作。

No matter what you do, you will be limited to using 1 thread (the UI thread) to update your windows (Winforms, WPF, native code). You can spawn as many worker threads as you want to do all the data gathering and prep work you need, however you'll still have to use the UI thread to do the updates. Take a look at the Task or the BackgroundWorker classes to do this work.

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