zoukankan      html  css  js  c++  java
  • WP7不使用推送服务修改瓷片图片

    在Windows Phone 7中如果需要修改主页瓷片图片,而并不是一定要使用推送服务,可以下面的方法
     1 private ShellTileSchedule shellTileSchedule;
     2 /// <summary>
     3 /// Create the application shell tile schedule instance
     4 /// </summary>
     5 private void CreateShellTileSchedule()
     6 {
     7     shellTileSchedule = new ShellTileSchedule();
     8     shellTileSchedule.Recurrence = UpdateRecurrence.Interval;
     9     shellTileSchedule.Interval = UpdateInterval.EveryHour;
    10     shellTileSchedule.StartTime = DateTime.Now;
    11     shellTileSchedule.RemoteImageUri = new Uri(@"http://cdn3.afterdawn.fi/news/small/windows-phone-7-series.png");
    12     shellTileSchedule.Start();
    13 }
  • 相关阅读:
    loj10008家庭作业
    loj10006数列分段
    loj10005数列极差
    loj10004智力大冲浪
    codevs 1996 矿场搭建
    11.3 上午考试
    11.2 晚上考试
    11.2 下午考试
    11.2 上午考试
    11.1 下午考试
  • 原文地址:https://www.cnblogs.com/jiachao721/p/2051057.html
Copyright © 2011-2022 走看看