Is there a way to add a config file for WP7 apps like there is for Windows apps and web apps? I just need an easy way to save a few settings I'd rather not create my own object and have to serialize/deserialize an xml file. There doesn't seem to by any kind of item template that I can add to my project so just wondering if anyone has done this or an idea on the best way?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Found that you can do this using IsolatedStorageSettings.ApplicationSettings class.
Take a look at Northern Lights WP7 toolkit (in nuget), specifically at the PersistentVariables. If you're just going to save variables as settings, this'll work, and Northern Lights has a lot more to it as well.
http://northernlights.codeplex.com/documentation
IsolatedStorageSettings.ApplicationSettings does work though I just posted about some other options available including:
at http://www.geoffhudik.com/tech/2012/1/26/windows-phone-app-config-settings-thinking-outside-the-box.html
I wrote a simple wrapper around the IsolatedStorageSettings class that helps store and retrieve settings. Maybe you will find it useful.