我正在尝试在Windows Phone 8中使用IconicTileData类,除了图块的颜色外,一切都运行良好。
无论我将该属性设置为磁贴,都会显示强调颜色,而不是提供的颜色。
ShellTile.Create(navigateUri, new IconicTileData
{
Title = category.Name,
BackgroundColor = Colors.Magenta,
IconImage = new Uri("/Resources/Tiles/IconicLarge.png", UriKind.Relative),
SmallIconImage= new Uri("/Resources/Tiles/IconicSmall.png", UriKind.Relative)
}, true);
答案 0 :(得分:0)
不完全确定为什么会这样,但添加
await System.Threading.Tasks.Task.Yield();
在调用ShellTile.Create之前似乎有效。