So say in an MVVM environment, I'm in a background thread and I'd like to run an update on a ui control. So normally I'd go myButton.Dispatcher.BeginInvoke(blabla) but I don't have access to myButton (because the viewmodel doesn't have access to the view's controls). So what is the normal pattern for doing this?
(I guess there's always binding, but I'd like to know how to do it via the dispatcher)
From Caliburn Micro source code :
Before using it you'll have to call
Execute.InitializeWithDispatcher()
from the UI thread then you can use it like thisExecute.OnUIThread(()=>SomeMethod())
I tend to have my ViewModels inherit from DependencyObject and ensure that they are constructed on the UI thread, which poises them perfectly to handle this situation - they have a
Dispatcher
property that corresponds to the UI thread's dispatcher. Then, you don't need to pollute your view with the ViewModel's implementation details.Some other pluses:
Application.Current.Dispatcher
)Pass the UI thread's dispatcher to the ViewModel's constructor and store it in the VM.
Take note that each thread may have its own dispatcher. You are going to need the UI thread's!
You could raise an event on your View Model (perhaps using a naming convention to indicate it's going to be raised from a non-UI thread - e.g. NotifyProgressChangedAsync). Then your View whom is attached to the event can deal with the dispatcher appropriately.
Or, you could pass a delegate to a synchronizing function to your View Model (from your View).
The ViewModelBase of Catel has a Dispatcher property that you can use.
I usually use
Application.Current.Dispatcher
: sinceApplication.Current
is static, you don't need a reference to a control