使用以下代码创建ShellTileSchedule时,我收到InvalidOperationException:

ShellTileSchedule sch;
public void UpdateTile()
{
    sch = new ShellTileSchedule();
    sch.Recurrence = UpdateRecurrence.Interval;
    sch.Interval = UpdateInterval.EveryHour;
    sch.StartTime = DateTime.Now;
    sch.RemoteImageUri = new Uri(@"http://winmilk.julianapena.com/Tile3.png");

    sch.Start();
}


该异常专门在调用sch.Start();时发生。
无论是使用间隔更新还是一次性更新,也都在发生。

任何人都知道为什么会这样吗?

提前致谢!

最佳答案

h,找到了答案。没有添加



到WMAppManifest.xml文件。

有点误导,因为ShellTileSchedule的文档说它正在“没有推送通知”的情况下更新磁贴。至少现在可以正常工作了:)

关于windows-phone-7 - 在Windows Phone 7上使用ShellTileSchedule时发生InvalidOperationException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4174879/

10-10 16:58