wpf mvvm threading.Timer 和 TimerCallback 问题

发布于 2024-11-05 21:37:48 字数 585 浏览 1 评论 0原文

我有一个针对 MVVM 框架开发的 WPF 应用程序,其中 ViewModel 构造函数设置了带有 TimerCallback 的 Timer。

TimerCallback 检索 ObservableCollection 并将其传递到 VM 上的字段。

我有一个 CollectionViewSource,其 Source 属性设置为 ObservableCollection。我使用 CollectionViewSource 因为我想在集合上启用过滤。

我发现,当 TimerCallback 尝试将 ObservableCollection 传递到本地字段时,CollectionViewSource 的 Source 属性出现异常 {“调用线程无法访问此对象,因为另一个线程拥有它。”}。

我理解这个异常,但我有两个问题:

  1. 如何解决这个问题?
  2. 更重要的是,为什么我只在使用 CollectionViewSource 时遇到这个问题?如果我删除 CollectionViewSource 并使 ObservableCollection 成为公共属性,那么我不会得到这样的异常。

任何帮助表示赞赏!谢谢, 德拉米

I have a WPF application developed against the MVVM framework in which the ViewModel constructor set a Timer with a TimerCallback.

The TimerCallback retrieves an ObservableCollection and passes it to a field on the VM.

I have a CollectionViewSource which has its Source property set to the ObservableCollection. I am using a CollectionViewSource because I want to enable filtering on the Collection.

I have found that when the TimerCallback attempts to pass the ObservableCollection into the local field the Source property for the CollectionViewSource has an exception {"The calling thread cannot access this object because a different thread owns it."}.

I understand the exception but I have two problems:

  1. How to get around this problem?
  2. And more importantly why do I only get this issue when using a CollectionViewSource? If I remove the CollectionViewSource and make the ObservableCollection a public property then I get no such exception.

Any help appreciated! Thanks,
Drammy

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

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

发布评论

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

评论(2

苍暮颜 2024-11-12 21:37:48
  1. 使用 DispatcherTimer 而不是您现在使用的计时器类,并确保在 UI 线程上创建它。
  2. 可能只有一个 ObservableCollection 你的 UI 没有更新。
  1. Use the DispatcherTimer instead of the timer class you are using now, and make sure you create it on the UI thread.
  2. Probably with just an ObservableCollection your UI is not updated.
冷情 2024-11-12 21:37:48

为了部分回答您的问题,UI 元素可能观察到的 ObservableCollection 的任何更新都必须通过 UI 线程调度。当我希望在 MVVM 中执行此操作时,我的策略是将 SynchronizationContext 注入到我在应用程序启动期间初始化的 ViewModel 的构造函数中。这为我提供了一种独立于视图框架的方式来调度必须与视图同步的更新。

To partially answer your question, any updates on ObservableCollection that might be observed by UI elements must be dispatched through the UI thread. When I wish to do this in MVVM, my strategy is to inject a SynchronizationContext into the constructor of the ViewModel that I initialize during my application startup. This gives me a View-framework-independent way to dispatch updates that must be synchronized with the View.

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