我希望 Nathan 的“带有 XAML 和 C# 的 Windows 8 应用程序”第 549 页的代码:
//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 中完成同样的事情?