我正在尝试使用以下内容创建辅助磁贴StandardTileData
:
StandardTileData tileData = new StandardTileData()
{
Title = "",
BackgroundImage = new Uri("/wifi.png", UriKind.Relative)
};
但是BackgroundImage
没有设置,是否有一些尺寸限制?图像是否必须具有特定的属性集?
我正在尝试使用以下内容创建辅助磁贴StandardTileData
:
StandardTileData tileData = new StandardTileData()
{
Title = "",
BackgroundImage = new Uri("/wifi.png", UriKind.Relative)
};
但是BackgroundImage
没有设置,是否有一些尺寸限制?图像是否必须具有特定的属性集?
图像大小不是这里的问题,而是文件位置。
您的BackgrounImage
图像必须保存到共享文件夹中:
如果 URI 引用存储在独立存储中的图像,则该图像必须位于
Shared\ShellContent
文件夹中。有关详细信息,请参阅Windows Phone 的数据。