Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am starting a new application in WPF and I am curious how to handle Localization? In WinForms you can use resx strings for the UI text, how is this done in WPF? Is there a special binding syntax for binding to resx resources or is there a different way of doing this?

Thanks!

share|improve this question

6 Answers

up vote 15 down vote accepted

Check out http://msdn.microsoft.com/en-us/library/ms788718.aspx. The article explains nicely how localization in WPF works.

share|improve this answer
1  
Unfortunately you still have to use the command line a lot. But I read that it will improve as WPF grows older. Does anybody know if there will be any improvements with VS 2010? – weiqure Apr 27 '09 at 20:05
8  
No improvement in VS 2010 :( – Andrei Rinea Jul 9 '10 at 10:44

Here is another article about WPF localization with the "old" stable ResX files:

Best Practices: Localize a WPF application

share|improve this answer

There is a good article on codeproject explaining how to do WPF localization using RESX files:

http://www.codeproject.com/KB/WPF/WPF_Resx_Localization.aspx

share|improve this answer

you can use a MarkupExtension to do localization with dynamic language switching. Here is an interesting article about this:

http://www.wpftutorial.net/LocalizeMarkupExtension.html

share|improve this answer

I found very easy to start WPF localization with VS template, described in authors blog.

Project created using this template already contains all the necessary tools for localization, as well as the maximum automates the localization process. During application development, you add a new XAML file without having to worry about localization. Upon completion of the changes simply build project and change default language to translated.

Download template

share|improve this answer

Another possibility can be found here:

http://wpflocalizeextension.codeplex.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.