Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to use ShellTileSchedule in Windows Phone 8 to update wide tiles?

Windows 8 has TileUpdateManager with StartPeriodicUpdate method which is perfect for what I want to do but I can't find equivalent in Windows Phone 8.

share|improve this question
This should do it. I don't have a code sample, but give me a bit msdn.microsoft.com/en-us/library/windowsphone/develop/… – kindasimple Nov 30 '12 at 15:12
"The background image for the front of the Tile is the only property that you can update using ShellTileSchedule." ~ from the link above – kindasimple Nov 30 '12 at 15:15
Using a ShellTileSchedule to update the Medium Background and a Scheduled task to update the rest of the tile may be as close as you can get – kindasimple Nov 30 '12 at 15:37

2 Answers

up vote 1 down vote accepted

It is possible to use ShellTileSchedule to update the wide background see http://www.developer.nokia.com/Community/Wiki/Generating_Live_tiles_for_Windows_Phone_from_Live_Data

share|improve this answer

No, the ShellTileSchedule only supports one resolution remote image. Instead you should use a PeriodicTask background agent and update the tile yourself (using C#)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.