WP7 Invalid cross-thread access - ScheduledTaskAgent
问题 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 line it is failing on is var fontForeground = new SolidColorBrush(Colors.White); I understand that there are limitations ans API's that I cannot call from within this background task, but I am only trying to setup some stuff to generate my own image to display on the Live tile. Is there something obvious I am doing wrong here. thanks Update..