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 (override_current_ui_language)
    {
        Thread.CurrentThread.CurrentUICulture = new CultureInfo(locale);
        Thread.CurrentThread.CurrentCulture = new CultureInfo(locale);
    }    
} 

But when I use the same under WPF Window class controller it doesn't work.

Any clue why is it?


I use this but it doesn't work as well.

void cmbLanguages_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            string locale = "es-ES";
            Thread.CurrentThread.CurrentUICulture = new CultureInfo(locale);
            Thread.CurrentThread.CurrentCulture = new CultureInfo(locale);
        }
link|improve this question

1  
I can recommend you wpflocalizeextension.codeplex.com where the switching works fine for me... – chrfin Jan 20 at 11:36
@chrfin In fact I use Easy BAML. It's fine as well. What I want is to use wpf combobox to switch languages. – Peretz Jan 20 at 11:41
1  
Sorry, can't help you with "Easy BAML", because I use LocalizeExtension to do exactly that (during runtime)... – chrfin Jan 20 at 11:47
See my answer for an example... – chrfin Jan 20 at 12:22
feedback

1 Answer

up vote 1 down vote accepted

I use LocalizeExtension for that.

In the .xaml you just use {LocText NAMESPACE::RESOURCENAME} to set the text and in the code behind the following to change the language on the fly:

Thread.CurrentThread.CurrentCulture = culture;
Thread.CurrentThread.CurrentUICulture = culture;
LocalizeDictionary.Instance.Culture = culture;

You can check my Project on Codeplex, where I use it, to see an extended example:
XAML and CodeBehind (->SetUICulture)

link|improve this answer
1  
Thats strange - I use that in several applications. Have you created the correct Resources? Resources.resx for english, Resources.es.resx for spanish aso.? – chrfin Jan 20 at 13:16
Yeah That was a problem. Thank you bro for a great advice to use WPF Localize Extension project wpflocalizeextension.codeplex.com – Peretz Jan 20 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.