I work on a Multi-Language application, everything is ok except the binding values, ex: In my user group table I have two fields name
and en_name
, I bind the name
to a Textbox:
<TextBox Text="{Binding name}"/>
When I change the language of my application, How can I change the binding to en_name
?