In Android, you can store user's config in "preferences" file. So where should the "preferences" being stored in a Metro app and how can this be accomplished?

Any example will help. Examples in Javascript would be the best.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can use Windows.Storage.ApplicationData for this.

Example:

var applicationData = Windows.Storage.ApplicationData.current;

var userSetting= applicationData.localSettings.values.userSetting;

//First run ? set default value
if (userSetting) == "undefined"){
    applicationData.localSettings.values.userSetting= 1; 
}

You can also take a look at the Sample SDK app

link|improve this answer
Thank you very much. @TiagoAndradeSilva – Louis_PIG Jan 17 at 15:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.