SlideShare a Scribd company logo
Windows Store App - Globalization
1) Add Strings folder in project. In the Strings folder add folders for different language that needs to be
supported by the application. In each language folder add a Resources.resw file. Refer to the image below. I
have added two resource files for English and Japanese.

2) Go to each resource file and add resources for content and width property of the button in the view
(XAML). Refer to the image below.

English Resource File
Japanese Resource File

3) Now we can go to view (XAML) and hook up the button with the resource (navButton) in Resources.resw
file using x:Uid attribute on the button.On doing this the button picks value for its Content and Width
properties from the Resources.resw file.

4) Set the default language for the application in Package.appxmanifest.
5) Test the application by toggling the system language preferences from control panel.

More Related Content

TXT
Change logon screen
PDF
Ibm total storage nas backup and recovery solutions sg246831
PDF
Vectores
PDF
Snapshot of Small molecular compounds that inhibit hepatitis C virus replicat...
ODP
Slides neli
PPTX
Mastering Social Media Workshop 3 Sept 2011
PPTX
Snapshot Replication
DOCX
Normas de la contabilidad
Change logon screen
Ibm total storage nas backup and recovery solutions sg246831
Vectores
Snapshot of Small molecular compounds that inhibit hepatitis C virus replicat...
Slides neli
Mastering Social Media Workshop 3 Sept 2011
Snapshot Replication
Normas de la contabilidad

Similar to Windows Store App - Globalization (20)

PPTX
Globalization and accessibility
DOCX
Android resources in android-chapter9
PDF
Android App Development 08 : Support Multiple Devices
PPTX
Android structure
PDF
Localization
PPTX
this is PPT for mobail application development
DOCX
WPF Application
PPTX
03 android application structure
PPTX
Localization and globalization in c#
PDF
Creating a text editor in delphi, a tutorial
PDF
Search++ Manual
PPTX
Anatomy Of An Adroid Application Lecture 3.pptx
ODP
Android App Development - 03 Resources
PDF
This project is the first projects you will be working on this quart.pdf
PPT
eyeryeryeryeryeyeyeryeryyerye13872085.ppt
PPTX
BENG 108 Final Project
DOCX
Android Resources.docx
PDF
Android resource
PDF
Oracle ADF 11g Skinning Tutorial
Globalization and accessibility
Android resources in android-chapter9
Android App Development 08 : Support Multiple Devices
Android structure
Localization
this is PPT for mobail application development
WPF Application
03 android application structure
Localization and globalization in c#
Creating a text editor in delphi, a tutorial
Search++ Manual
Anatomy Of An Adroid Application Lecture 3.pptx
Android App Development - 03 Resources
This project is the first projects you will be working on this quart.pdf
eyeryeryeryeryeyeyeryeryyerye13872085.ppt
BENG 108 Final Project
Android Resources.docx
Android resource
Oracle ADF 11g Skinning Tutorial
Ad

Recently uploaded (20)

PDF
Empathic Computing: Creating Shared Understanding
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
August Patch Tuesday
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
Encapsulation theory and applications.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PPT
Teaching material agriculture food technology
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
Machine Learning_overview_presentation.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
1. Introduction to Computer Programming.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Getting Started with Data Integration: FME Form 101
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
Empathic Computing: Creating Shared Understanding
cloud_computing_Infrastucture_as_cloud_p
August Patch Tuesday
A comparative study of natural language inference in Swahili using monolingua...
Encapsulation theory and applications.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Programs and apps: productivity, graphics, security and other tools
Teaching material agriculture food technology
NewMind AI Weekly Chronicles - August'25-Week II
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Assigned Numbers - 2025 - Bluetooth® Document
Machine Learning_overview_presentation.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Spectral efficient network and resource selection model in 5G networks
1. Introduction to Computer Programming.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Getting Started with Data Integration: FME Form 101
Univ-Connecticut-ChatGPT-Presentaion.pdf
Ad

Windows Store App - Globalization

  • 1. Windows Store App - Globalization 1) Add Strings folder in project. In the Strings folder add folders for different language that needs to be supported by the application. In each language folder add a Resources.resw file. Refer to the image below. I have added two resource files for English and Japanese. 2) Go to each resource file and add resources for content and width property of the button in the view (XAML). Refer to the image below. English Resource File
  • 2. Japanese Resource File 3) Now we can go to view (XAML) and hook up the button with the resource (navButton) in Resources.resw file using x:Uid attribute on the button.On doing this the button picks value for its Content and Width properties from the Resources.resw file. 4) Set the default language for the application in Package.appxmanifest.
  • 3. 5) Test the application by toggling the system language preferences from control panel.