I've got a windows forms application that uses french and english. We're
localizing it right now. It does appear to work if I set the language
Thread.CurrentT hread.CurrentCu lture = new CultureInfo("fr-CA");
Thread.CurrentT hread.CurrentUI Culture = new CultureInfo("fr-CA");
Just before we run it.
How can I setup a button that will toggle the language while the program is
running? It seems once it's running, changing the language has no effect.
Thanks,
Greg
localizing it right now. It does appear to work if I set the language
Thread.CurrentT hread.CurrentCu lture = new CultureInfo("fr-CA");
Thread.CurrentT hread.CurrentUI Culture = new CultureInfo("fr-CA");
Just before we run it.
How can I setup a button that will toggle the language while the program is
running? It seems once it's running, changing the language has no effect.
Thanks,
Greg
Comment