更新 BindingList<>来自后台线程?
我想知道如何使用 WPF 中的 Dispatcher 从另一个线程安全地更新我的 BindingList 集合?
我也愿意接受其他解决方案,
非常感谢, 卡韦
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道如何使用 WPF 中的 Dispatcher 从另一个线程安全地更新我的 BindingList 集合?
我也愿意接受其他解决方案,
非常感谢, 卡韦
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我更喜欢将
Task
调度到 UI 线程。您可以通过在 UI 线程上调用TaskScheduler.FromCurrentSynchronizationContext
来获取 UI 线程调度程序。 MSDN 有一个示例此处。我通常更喜欢基于
SynchronizationContext
的解决方案,而不是基于Dispatcher
的解决方案,因为它们不依赖于 WPF/Silverlight。因此,可以编写一个通用业务对象层来处理同步,但可以从 WPF、ASP.NET、Windows 窗体、Win32 服务等中使用。I prefer scheduling a
Task
to the UI thread. You can get the UI thread scheduler by callingTaskScheduler.FromCurrentSynchronizationContext
while on the UI thread. MSDN has an example here.I generally prefer
SynchronizationContext
-based solutions instead ofDispatcher
-based solutions because they are not tied to WPF/Silverlight. So, it's possible to write a common business object layer that handles the synchronization yet can be used from WPF, ASP.NET, Windows Forms, Win32 Services, etc.