Tagged Questions
1
vote
1answer
74 views
Can I use WPF window constructor to change culture?
I use the well known LocBaml approach to change culture.
It works fine here:
public App()
{
// Test code
bool override_current_ui_language = true;
string locale = "es-ES";
if ...
1
vote
3answers
2k views
WPF locbaml-ed application and runtime language switch?
i wonder if there is a simple solution to change language of a wpf application during runtime. i used locbaml to globalize all the resources. Setting the Current Thread's UICulture in the ...