0

I'm new to WPF. I'm trying to create a multi-language application using resources file. I have combobox to choose language and textblocks to display the changes. I don't know where to start. So if you have any link to reference, please let me know!

crystal
  • 13
  • 7

2 Answers2

0

There are several ways in which you can translate your application. You can use resx files to translate the program depending on the language settings.

The following guides could help you:

https://www.tutorialspoint.com/wpf/wpf_localization.htm

https://www.codeproject.com/Articles/35159/WPF-Localization-Using-RESX-Files

How to use localization in C#

Max
  • 68
  • 8
0

In order to help you handling .resx files, please have a look at the ResxManager addon for Visual Studio.

enter image description here

This addon shows all string translations in a grid with all implemented language as columns and it provides many facilities to help you manage translation, like showing red grid cell on missing translation, translation services, etc...

trix
  • 878
  • 6
  • 14