Localization in Prism WPF App

2.7k views Asked by At

I'm looking for the best way to localize a Prism 2 WPF app that might have several modules ported to Silverlight 3. Has anyone successfully localized a Prism 2 WPF app with several modules?

2

There are 2 answers

1
Anderson Imes On

Yes. You have a lot of options and the gamut of them can be found in this excellent article on CodePlex: http://wpflocalization.codeplex.com/

There is very little that is specific to Prism regarding localization.

0
scim On

I'm solved the same problem by having a static LocalizationManager that is reachable from XAML by a custom markupextension, and that works very well.

Take a look at http://www.wpftutorial.net/LocalizeMarkupExtension.html for an example!