Localization for UWP projects is more complex than in other applications since your application will honor the language set by the end-user in their system's Control Panel.
You can change the language for the application by setting it in the Package.appxmanifest; or by setting the PrimaryLanguageOverride in MainPage() constructor of your application, as shown below:
C# |
Copy Code
|
---|---|
Windows.Globalization.ApplicationLanguages.PrimaryLanguageOverride = "ja-JP";
|
For more information on localization in UWP applications, see Globalization and localization from MSDN.
For more advanced information on localization, see Tim Heuer's blog post, Ensuring your Windows store app knows of a language change.