我想设置一个存储在IsolatedStorage
中的图像作为图块的背景图像。
我们以这种方式创建图块:
StandardTileData tile = new StandardTileData();
现在tile.BackgroundImage
接受Uri
。在IsolatedStorage中/MyFolder/MyFile.png
中的图像的完整路径是什么?
答案 0 :(得分:2)
tile.BackgroundImage = new Uri("isostore:/MyFolder/MyFile.png", UriKind.Absolute);
以下是有关WP8中数据的更多信息:http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402541(v=vs.105).aspx
答案 1 :(得分:-1)
试试这个
StorageFolder folder = ApplicationData.Current.LocalFolder;
var path = folder.Path;