I am using http://wpflocalizeextension.codeplex.com for localization and have the following page.
<Window xmlns:lex="http://wpflocalizeextension.codeplex.com"
lex:LocalizeDictionary.DesignCulture="en"
lex:ResxLocalizationProvider.DefaultAssembly="AssemblyTestResourceLib"
lex:ResxLocalizationProvider.DefaultDictionary="Strings">
<!-- Some controls -->
</Window>
Does anyone know how to Change the property in code behind ?
ResxLocalizationProvider.DefaultDictionary="Strings"
ie to
ResxLocalizationProvider.DefaultDictionary="OtherStrings"
Assuming that is an attached property, would it be something like
?
I don’t actually have the lex module so can’t try this out myself…