I want to change the system language of a Universal Win 10 app using C# code.
I tried this code:
var culture = new System.Globalization.CultureInfo("fr-be");
Windows.Globalization.ApplicationLanguages.PrimaryLanguageOverride = culture.Name;
Windows.ApplicationModel.Resources.Core.ResourceContext.GetForCurrentView().Reset();
Windows.ApplicationModel.Resources.Core.ResourceContext.GetForViewIndependentUse().Reset();
But this did not work because I want to change the client language, not my app language.
As far as I know, ApplicationLanguages.PrimaryLanguageOverride is used to get or set an override for the app's preferred language.
The windows store apps run in sandbox. You cannot set system language directly by coding. It requires users to open "Settings-Time&Language" to set themself.
But you can use Launch to open the settings page.