在我正在使用MVVM模式编写的WPF应用程序中,我有一个后台进程可以做到这一点,但需要从UI获取状态更新.
我正在使用MVVM模式,因此我的ViewModel几乎不知道向用户呈现模型的视图(UI).
假设我的ViewModel中有以下方法:
public void backgroundWorker_ReportProgress(object sender, ReportProgressArgs e) { this.Messages.Add(e.Message); OnPropertyChanged("Messages"); }
在我看来,我有一个ListBox绑定到List
ViewModel 的Messages属性(a ). 通过调用a OnPropertyChanged
来完成INotifyPropertyChanged
接口的角色PropertyChangedEventHandler
.
我需要确保OnPropertyChanged
在UI线程上调用 - 我该怎么做?我尝试过以下方法:
public Dispatcher Dispatcher { get; set; } public MyViewModel() { this.Dispatcher = Dispatcher.CurrentDispatcher; }
然后将以下内容添加到OnPropertyChanged
方法中:
if (this.Dispatcher != Dispatcher.CurrentDispatcher) { this.Dispatcher.Invoke(DispatcherPriority.Normal, new ThreadStart(delegate { OnPropertyChanged(propertyName); })); return; }
但这没用.有任何想法吗?
WPF自动将属性更改封送到UI线程.但是,它不会编组集合更改,因此我怀疑您添加消息导致失败.
您可以自己手动编组添加(参见下面的示例),或者使用类似我在博客上讨论的技术.
手动编组:
public void backgroundWorker_ReportProgress(object sender, ReportProgressArgs e) { Dispatcher.Invoke(new Action(AddMessage), e.Message); OnPropertyChanged("Messages"); } private void AddMessage(string message) { Dispatcher.VerifyAccess(); Messages.Add(message); }
我真的很喜欢Jeremy的回答: 在Silverlight中调度
摘要:
在ViewModel中放置Dispatcher似乎不够优雅
创建Action
从V使用VM时,设置Action属性以调用Dispatcher