在我的应用程序中,我的所有图像都保存在IsolatedStorage空间中。 我可以使用Uri创建一些辅助磁贴,链接到我的应用程序的独立存储吗? 反正有没有这样做?我找不到东西。
感谢名单
答案 0 :(得分:18)
您的图片必须保存在Shared / ShellContent下。阅读文档here。
因此,例如你的图像Tile的路径将是这样的:
tileData.BackgroundImage = new Uri("isostore:/Shared/ShellContent/background.png", UriKind.Absolute)
您必须添加“isostore”前缀才能从隔离的商店中加载图片。