This question is locked. New answers and comments are not allowed.
I'm developing a modular Silverlight application with PRISM.
Is it possible to implement the LocalisationManager with multiple ressource (resx) files? I dont' want to use global resx file. Every module should have it's own resx file.
Regards
Dirk
Example:
LocalizationManager.Manager =
new
LocalizationManager()
{
ResourceManager = Main.Common.Resources.Module1Strings.ResourceManager,
Culture =
new
CultureInfo(culture)
};
LocalizationManager.Manager =
new
LocalizationManager()
{
ResourceManager = Main.Common.Resources.Module2Strings.ResourceManager,
Culture =
new
CultureInfo(culture)
};