2

我想设置一个存储IsolatedStorage为图块背景图像的图像。

我们以这种方式创建瓷砖:

StandardTileData tile = new StandardTileData();

现在tile.BackgroundImage接受一个Uri. /MyFolder/MyFile.png隔离存储中的图像的完整路径是什么?

4

2 回答 2

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

于 2013-09-08T18:16:00.267 回答
-1

尝试这个

  StorageFolder folder = ApplicationData.Current.LocalFolder;
                 
                var path = folder.Path;

于 2015-04-16T15:28:23.747 回答