3

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?

Anderson Imes
  • 25,500
  • 4
  • 67
  • 82
Richard Golko
  • 31
  • 1
  • 2

2 Answers2

2

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!

scim
  • 203
  • 3
  • 8
1

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.

Anderson Imes
  • 25,500
  • 4
  • 67
  • 82
  • Thanks; I decided to use a purely WFP option for now, as stipulated in the doc you reference, but will have to come up with a way that will work for both WPF and Silverlight eventually. – Richard Golko Nov 18 '09 at 16:23