https://github.com/lightbuzz/localization-uwp
Explicit Localization in Windows Universal Platform
https://github.com/lightbuzz/localization-uwp
Last synced: 4 months ago
JSON representation
Explicit Localization in Windows Universal Platform
- Host: GitHub
- URL: https://github.com/lightbuzz/localization-uwp
- Owner: LightBuzz
- License: mit
- Created: 2016-12-12T00:30:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-12T01:41:03.000Z (over 9 years ago)
- Last Synced: 2025-05-09T01:24:47.755Z (about 1 year ago)
- Language: C#
- Size: 26.4 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Explicit Localization in UWP
Learn how to localize your Universal Windows app by selecting the language programmatically.

## 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
## Contributors
* [Vangos Pterneas](http://pterneas.com)
* [George Karakatsiotis](http://lightbuzz.com)
## License
Licensed under the [MIT License](https://github.com/LightBuzz/Localization-UWP/blob/master/LICENSE).