Skip to content

LightBuzz/Localization-UWP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Explicit Localization in UWP

Learn how to localize your Universal Windows app by selecting the language programmatically.

Localization UWP by LightBuzz

Features

Get the languages supported by the current app

var supportedLanguages = LocalizedResources.SupportedLanguages;

Set the language

LocalizedResources.Language = "en-US";

Localize content in C-Sharp

TblTitle.Text = LocalizedResources.GetString("Title/Text");

Localize content in XAML

<TextBlock x:Uid="Title" x:Name="TblTitle" Text="Title" />

Contributors

License

Licensed under the MIT License.

About

Explicit Localization in Windows Universal Platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages