I have a small WPF application where I\'m simulating movement which is detected by a sensor. I fake that movement occurs after 1 minute and it stops after 2 minutes. Below i
You can use Dispatcher.Invoke() to marshall onto the UI thread.
Dispatcher.Invoke()
Please see: Making sure OnPropertyChanged() is called on UI thread in MVVM WPF app