开发者

Change input language for selected Controls

I've a text area in my application. I want to programmatically set the input language for the text area alone witho开发者_如何学Pythonut affecting other controls.


Unfortunately this can't be done by your program. The user needs to use Unicode keyboard or Input method Editor (IME). Since you're using C#/.Net platform, your program is already capable of dealing with unicode inputs. You just read the value from textbox as

string str = Textbox1.Text

str will contain the unicode input given by the User.

Ex: Look at the text below, I have written the word MICROSOFT in indic language using my Indic-IME. You may notice that there's nothing additionally done on this website to display this text below. It's just my indic language IME.

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

Some sample unicode IMEs for indian language can be found here..

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜