In WP7 app I am calling some code to update a live tile from the onInvoke method on the ScheduledAgent class.
Getting an invalid cross-thread error.
The li
Use the Dispatcher to execute the code on the UI thread instead on a background thread:
Dispatcher
Deployment.Current.Dispatcher.BeginInvoke(()=> { fontForeground = new SolidColorBrush(Colors.White); ... });