Edit :
I manage to view the list by doing the following
private void LoadFromLocalStorage()
{
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
string[] fileNames = store.GetFileNames();
foreach (string s in fileNames)
{
listBox1.Items.Add(s);
}
}
}
How do i display it on a Pivot page as an item so when i select , i would be able to load the image.
Thanks in advance!
imageFolderis a folder where your image is locate in your project. to execute above method just tryLoadFromLocalStorage(YourInageFolderName).Its not necessary that isimageFolder.