windows phone 8.1開發:磁鐵|Tile更新

來源:互聯網
上載者:User

標籤:style   blog   http   color   os   io   ar   for   檔案   

原文出自:http://www.bcmeng.com/tile/

上一篇給大家分享了toast通知操作的方法,這一篇文章我們就來看windows phone 8.1開發中的磁鐵更新.磁鐵是windows phone手機的一大亮點,小夢本人也十分喜歡.而更新磁鐵也是許多應用都需要的功能.其實磁鐵的更新和toast通知的方法幾乎是一樣的,因為它們的本質都是一個XML檔案.

選擇磁鐵模板:

磁鐵的模板十分多,具體可以瀏覽: http://msdn.microsoft.com/zh-cn/library/windows/apps/xaml/windows.ui.notifications.tiletemplatetype.aspx .本樣本選用模板:

TileSquare150x150PeekImageAndText02.具體樣子在最後會有,一面是圖片,背面是文字.文字有倆部分.

其XML結構如下:

<tile>  <visual version="2">    <binding template="TileSquare150x150PeekImageAndText02" fallback="TileSquarePeekImageAndText02">      <image id="1" src="image1" alt="alt text"/>      <text id="1">Text Field 1 (larger text)</text>      <text id="2">Text Field 2</text>    </binding>    </visual></tile>

選擇模板的代碼如下:

XmlDocument tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileSquare150x150PeekImageAndText02);
為磁鐵提供常值內容
  XmlNodeList tileTextAttributes = tileXml.GetElementsByTagName("text");            tileTextAttributes[0].InnerText = "小夢";            tileTextAttributes[1].InnerText = "編程小夢歡迎你";
為磁鐵提供映像
 XmlNodeList tileImageAttributes = tileXml.GetElementsByTagName("image"); ((XmlElement)tileImageAttributes[0]).SetAttribute("src", "ms-appx:///assets/bcmeng.png");
建立磁鐵:
 TileNotification tileNotification = new TileNotification(tileXml);
設定磁鐵到期時間:
  tileNotification.ExpirationTime = DateTimeOffset.UtcNow.AddHours(24);
嚮應用磁貼發送通知
  TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotification);

windows phone 8.1開發:磁鐵|Tile更新

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.