This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()); | |
} | |
} |