Skip to content

Instantly share code, notes, and snippets.

@stepos01
stepos01 / App.cs
Last active August 29, 2015 14:13 — forked from artem-zinnatullin/App.cs
public class App : Application
{
// ... bla bla
// when app is launching, we should set its language to previous saved or best for user's system language or default for application
private void Application_Launching(object sender, LaunchingEventArgs e)
{
LocalizationManager.ChangeAppLanguage(LocalizationManager.GetCurrentAppLang());
}
}