使用以下代码创建 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();
. 无论我使用间隔更新还是一次性更新,都会发生这种情况。
有人知道为什么会这样吗?
提前致谢!