We can use ApplicationLanguages.PrimaryLanguageOverride to change the language during runtime without restart the app.
For example: I have two languages supported "en" and "fr", localized message will show up in textblock.
Add using Windows.Globalization;
Change the default language from "en" to "fr" by
ApplicationLanguages.PrimaryLanguageOverride = "fr";
Re-navigate to the current page to refresh the UI.
Frame.Navigate(this.GetType());
Note that, you need to compare the PrimaryLanguageOverride with the system culture to set the language for next app launch, because the PrimaryLanguageOverride setting is persisted. And if you have page cache enabled, when you apply a different language on the fly, you need to clear the cache by setting Frame.CacheSize = 0;
first then set it back.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…