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
2009-05-08 09:55:58