编辑:
我设法通过执行以下操作来查看列表
private void LoadFromLocalStorage()
{
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
string[] fileNames = store.GetFileNames();
foreach (string s in fileNames)
{
listBox1.Items.Add(s);
}
}
}
如何在Pivot页面上将其显示为项目,因此当我选择时,我将能够加载图像。
提前致谢!
答案 0 :(得分:0)
i dont know what is the imageFolder??
imageFolder
是您的图片在项目中找到的文件夹。执行上述方法只需尝试
LoadFromLocalStorage(YourInageFolderName)
。不一定是imageFolder
。