Windows Phone - ScheduledTaskAgent更新动态磁贴计数
本文关键字:动态 更新 Phone ScheduledTaskAgent Windows | 更新日期: 2023-09-27 18:11:00
我有ScheduledTaskAgent,在这个代理中,当某些条件为真时,我想更新Live Tile中的计数。像这样的代码:
ShellTile tile = ShellTile.ActiveTiles.First();
if ( tile != null)
{
StandardTileData data = new StandardTileData();
data.Title = "Title text here";
data.Count = 1;
tile.Update(data);
}
但是在第一行,我有这个Exception:
"System.Collections.Generic.IEnumerable"不包含"第一"的定义和没有扩展方法'First'接受类型为的第一个参数"System.Collections.Generic.IEnumerable"
我应该怎么做来解决这个异常?我必须导入一些库或以某种方式连接ScheduledTaskAgent与应用程序?
问题解决:缺少命名空间
来;