Guest User

Untitled

a guest
Nov 16th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. private void LoadFromLocalStorage()
  2. {
  3. using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
  4. {
  5. string[] fileNames = store.GetFileNames();
  6.  
  7. foreach (string s in fileNames)
  8. {
  9.  
  10. listBox1.Items.Add(s);
  11.  
  12. }
  13. }
  14. }
  15.  
  16. i dont know what is the imageFolder??
Add Comment
Please, Sign In to add comment