wp后台更新瓷片
还有一种方式,更新瓷片方式
1、
/// <summary>
/// 定时更新磁贴
/// </summary>
public class ShellUpdate
{
ShellTileSchedule schedule;
public void CreateShell(string remoteUri, UpdateRecurrence updateOption = UpdateRecurrence.Interval)
{
schedule = new ShellTileSchedule
{
Interval = UpdateInterval.EveryHour,
MaxUpdateCount = 10,
Recurrence = updateOption,
RemoteImageUri = new Uri(remoteUri),
};
schedule.Start();
}
public void StopShell()
{
if (schedule!=null)
{
schedule.Stop();
}
}
}

浙公网安备 33010602011771号