1
我已創建了Windows 8週期性磁貼更新的動態頁面。用於圖塊的網址是:Windows 8週期性磁貼未更新
http://www.dealsapiens.co.uk/ws/xml.aspx?action=tile
所以我嘗試使用下面的代碼:
// update the tile poll URI
var notifications = Windows.UI.Notifications;
var polledUri = new Windows.Foundation.Uri("http://www.dealsapiens.co.uk/ws/xml.aspx?action=tile");
var recurrence = notifications.PeriodicUpdateRecurrence.hour;
var tileUpdater = notifications.TileUpdateManager.createTileUpdaterForApplication();
tileUpdater.startPeriodicUpdate(polledUri, recurrence);
然而,當我運行和停止添加和進入開始菜單,我不看到平鋪圖像,它只是呈現一個黑色的瓷磚。有任何想法嗎?我的磁貼XML有問題嗎?