tags:

views:

142

answers:

3

Hi

I want to change my user interface language at run time. what is the best approach to do this?

Regards Raju

A: 

If you can carry extra files with your software, you could probably go for XML files, each files containing a particular language. The other option is probably using a database for storing the words.

Frank
How do i change the language of UI elements? I have few text boxes on my page. I want to change the text in the text boxes at run time.How can i do that?
It's a big lecture, but I suggest taking a look at what Thomas Levesque has posted. This document seem pretty complete to me.
Frank
A: 

Have a look at this document, it describes various approaches to implement localization. Using a solution such as markup extensions or attached properties, you should be able to change the language at runtime

Thomas Levesque
A: 

I've been using this: http://www.codeproject.com/KB/WPF/WPF_Localization.aspx

Uses a XAML markup extension and resource files.

MetalMikester