Change the input language for selected controls

I have a text area in my application. I want to programmatically set the input language for the text area without affecting other controls.

+2
source share
1 answer

Unfortunately, this program could not be executed. The user needs to use a Unicode keyboard or input method editor (IME). Since you are using the C # / platform. Net, your program is already capable of handling unicode inputs. You just read the value from the text box as

string str = Textbox1.Text

str will contain the Unicode input specified by the user.

Ex: , MICROSOFT IME. , - , . IME.

माइक्रोसॉफ्ट

Unicode IME .

+1

All Articles