标准tile数据的背景图像是否有大小限制?



我想用StandardTileData:

创建一个二级tile
StandardTileData tileData = new StandardTileData()
{
    Title = "",
    BackgroundImage = new Uri("/wifi.png", UriKind.Relative)
};

但是没有设置BackgroundImage,是否有一些大小限制?图像必须有特定的属性设置吗?

这里的问题不是图像大小,而是文件位置。

您的BackgrounImage图像必须保存到共享文件夹:

如果URI引用了存储在隔离存储中的图像,那么图像必须在SharedShellContent文件夹中。更多的

最新更新