Please share you experiences regarding how you localized your WPF applications to support multiple languages and any resources that helped you in it?
Thanks for your feedbacks.
|
Please share you experiences regarding how you localized your WPF applications to support multiple languages and any resources that helped you in it? Thanks for your feedbacks. |
|||
|
|
For our WPF application, all of our strings are localized as resources in a For example, somewhere in the application a button might look like this:
Each
The
|
|||
|
|
Sorry if it is vague (above question),basically it about how you implemented it in your application and what you felt was the best way.It is basically to understand scenarios. |
|||
|
|
|
You might be interested in this article about WPF localization with the "old" stable ResX files: |
|||
|
|
|
I just localized my WPF application successfully using ResourceDictionary. The method I used allows for dynamic changing of languages, easy translation, design-time support, and even allows for partial translations. I based my work on http://www.geektieguy.com/2006/12/12/localizing-an-xbap-application-without-using-locbaml/ You can see my efforts in part at: ResourceDictionary Source Binding to Module (for Localization) |
|||
|
|