I have just started using MvvmCross, but i didn\'t find any info about to how i can execute UI code from a ViewModel.
On Caliburn there are coroutine so i can acces
There exists an easier way. Here is the method I use for executing any action on the main thread:
protected void RunOnUIThread(Action action) { var dispatcher = Mvx.Resolve(); dispatcher.RequestMainThreadAction(action); }
Hope it helps. Cheers.