You will need to write an isolated storage user culture
Values are saved as a key / value pair:
private IsolatedStorageSettings userSettings =
IsolatedStorageSettings.ApplicationSettings;
userSettings.Add("userCulture", "en-US-c1");
userSettings.Remove("userCulture");
Just the default is something reasonable, and you will need an option that allows the user to choose their culture.
source
share