如何使用 wpf 调度程序创建多 UI 线程 winforms 应用程序
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论您做什么,您都将被限制使用 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.