Reputation: 1337
i need to create isolated storage for my windows phone app, it is a business app that shows you all your business documents, and from there you can reject and accept the business documents, now what my problem is i have no idea where to start with isolate storage? i have been through google, but it does not make any sense, so if anyone can send me a link or tutorial it will be awesome, and how can i make the isolated storage in my app.xaml file so i can use it over and over again?
this is the link that gave me basic understanding , but it is all on buttonclick?
Upvotes: 3
Views: 12018
Reputation: 1218
public static IsolatedStorageSettings appSetting = IsolatedStorageSettings.ApplicationSettings;
if (appSetting.Keys.Count == 0) appSetting.Add("key",value);
if (appSetting.Keys.Count > 0) appSetting.Remove("TEACHER");
if (appSetting.Contains("key"))
...
Upvotes: 0
Reputation: 48065
Have you tried IsoStoreSpy ? It supports both WP7 and WP8
It works well on my WP8 emulator, too
See here http://isostorespy.codeplex.com/
Upvotes: 0
Reputation: 566
There is a pretty comprehensive example at the msdn page for isoloated storage file. If you need to double check some of the files that you've placed there, there is isolated storage explorer tool that comed with the sdk.
Upvotes: 3