I need to switch a UI language at runtime in a UWP app. And I want to show all languages which are localized, in the 'Strings' folder.
For example, I have added 'en-US', 'zh-CN', and 'ja-JP' resources in 'Strings' folder, so the app should support English, Chinese and Japanese.
But I want to get a list of how many languages have been added in the 'Strings' folder, programmatically. Thus, When I add a new language, I have no need to change the code.
Strings
folder and those resource files can not be accessed usingStorageFolder
. – Grace Feng