问题描述
我在我的应用程序中的文本区域。我想以编程方式设置为文本区输入语言独而不影响其他控制。
I've a text area in my application. I want to programmatically set the input language for the text area alone without affecting other controls.
推荐答案
可惜,这不能被你的程序来完成。用户需要使用统一code键盘或输入法编辑器(IME)。由于您使用C#/。NET平台上,你的程序已经能够处理UNI code输入。你刚才读的文本框中的值
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
海峡将包含由用户提供的UNI code输入。
str will contain the unicode input given by the User.
例如:
看看下面的文字,我写我使用印度语,IME在印度语单词MICROSOFT。您可能会注意到,有什么是这个网站上还做下面显示该文本。这只是我的印度语输入法。
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.
माइक्रोसॉफ्ट
माइक्रोसॉफ्ट
印度语言中的一些样品单code输入法可以发现 rel=\"nofollow\">。
Some sample unicode IMEs for indian language can be found here..
这篇关于更改输入语言选择控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!