Let me give you some details. Create a class like LacalizedStrings.csin your project. And let this be the name of the resource fileAppResources
public class LocalizedStrings
{
private static AppResources _localizedResources = new AppResources();
public AppResources LocalizedResources { get { return _localizedResources; } }
}
in AppResourcesenter one key as ResourceLanguagewell as value en-US.
Now this value can be saved in IsolatedStorageand time
private void Application_Launching(object sender, LaunchingEventArgs e)
{
}
or
private void Application_Activated(object sender, ActivatedEventArgs e)
{
}
You can check this value with IsolatedStorageand use it.
Hope this helps.
source
share