tags:

views:

317

answers:

1

I want to change the input method for text box in my WPF application. Can anyone please help

+1  A: 

Just a shot in the dark, but there's a Language Property for TextBox.

<TextBox Language="{Binding}">

http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.language.aspx

So you could bind that Property to a locale attribute in your code.

Torsten