我希望從內森的「Windows 8的應用程序使用XAML和C#」的549頁驗證碼:如何在WP8中更新我的應用程序的Live Tile徽章?
//string xmlString = @"<badge value='2'/>";
string xmlString = string.Format(@"<badge value={0}/>", 42);
XmlDocument document = new XmlDocument();
document.LoadXml(xmlString);
BadgeNotification notification = new BadgeNotification(document);
BadgeUpdateManager.CreateBadgeUpdaterForApplication().Update(notification);
...也會爲WP8工作,但許多類是不能識別的在我的WP8 ScheduledTaskAgent,即XmlDocument,BadgeNotification和BadgeUpdateManager。
我怎樣才能從我的ScheduledTaskAgent完成在WP8同樣的事情?
是否也能解釋爲什麼這工作? – Robert
「<徽標值='{0}'/>」 - 有撇號('),在第一篇文章中他們不是 – NeoSvet