1

我正在尝试使用以下内容创建辅助磁贴StandardTileData

StandardTileData tileData = new StandardTileData()
{
    Title = "",
    BackgroundImage = new Uri("/wifi.png", UriKind.Relative)
};

但是BackgroundImage没有设置,是否有一些尺寸限制?图像是否必须具有特定的属性集?

4

1 回答 1

3

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

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

如果 URI 引用存储在独立存储中的图像,则该图像必须位于Shared\ShellContent文件夹中。有关详细信息,请参阅Windows Phone 的数据

于 2013-04-19T09:18:57.963 回答