Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a touch screen keyboard in my WPF application and I would like to allow the users to write in chinese.

I saw that there is an IME in Windows that allows to write in chinese with Pinyin. It works great but I'd like to customize it for my WPF application. (Especially the candidate list). I didn't find any documentation for this.

The idea will be that the user write in Pinyin with the virtual keyboard and there will be a list of choice with chinese ideograms next to the textbox.

Do you have any advice to achieve it? Maybe there is a library (not from Microsoft) that can make it and in this case I won't use the IME from MS?

share|improve this question
If it is touch-based input, wouldn't it be better to let them enter characters by "writing" on the screen instead of using pinyin conversion? – Szabolcs Mar 2 '12 at 15:04
The touchscreen is not really reactive and it won't be easy to write in small textboxes. It's for a medical application, so the physician s have the possibility to create new patients and after find them by their name, firstname etc. That's why can't implement your solution. – Rodrigo Mar 2 '12 at 15:18
So the reason you want to customize the candidate list is to auto-complete the patient name? The way most programs I know implement this is by allowing to type pinyin (directly, not through the system IME), and autocomplete based on that. This problem is a lot easier than implementing a general and effective IME---a general IME must handle all characters and must suggest the most likely matches The newest MS pinyin IME even auto-updates from the internet with the latest statistics to improve predictions, and it learns from the user as well. – Szabolcs Mar 2 '12 at 15:24
So as a simple workaround you could let them type either in roman letters (direct pinyin), and suggest matched on the names in characters, and let them type through an IME as well, just like on a usual desktop OS. This is not as good as offering the auto-completion right in the IME of course, but it should be pretty usable. – Szabolcs Mar 2 '12 at 15:26
Thanks for your advices Szabolcs. The reason I want to customize the candidate list of the MS IME is to give it the same theme of the application. (The list will appear next to the keyboard). There is not just the firstname and the lastname but also comments about the patients. I think it would be better that the user can insert chinese ideograms instead of pinyin. I can get the list with the function ImmGetCandidateList but can I modify the list style with a function of imm32.dll? – Rodrigo Mar 2 '12 at 16:00

2 Answers

up vote 2 down vote accepted

http://www.microsoft.com/downloads/zh-cn/details.aspx?FamilyID=7D1DF9CE-4AEE-467F-996E-BEC826C5DAA2

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=15251

Microsoft in fact has good components/libraries for that, but they are hidden here in the Visual Studio International Feature Pack.

Note that You need 1.0 SR 1 which provides the basic libraries, while 2.0 adds many WinForms or WPF controls.

share|improve this answer
Thank you Lex Li, I've downloaded the package before but I didn't see anything about how to convert a pinyin string into Chinese ideograms. Which function shall I use? – Rodrigo Mar 13 '12 at 10:46
I should have made it clearer that you need both 1.0 SR 1 and 2.0. CHSPinyinConv.msi in 1.0 SR1 is the one for Pinyin conversion. ChineseChar.GetChars(string pinyin) can be your starting point. – Lex Li Mar 14 '12 at 9:42

Not sure if there is any OS (Open Source) packages available. However, in theory, it is not too hard to build this kind of library. In Chinese, there are about 1300 single sounds: initial + final + tones. Each sound have group of Chinese characters, various number from 1 to 130 characters.

You may define an array of all Pinyin sounds:

string[] pinyins = new string[] {
  "a:c1c2c3...",      // pinyin 1 a: character1 character2...
  ...
  "zuo:z1z2z3z4z5..." // last pinyin (1300) zuo: character character...
};

The above array is a base for your mapping Pinyin to Chinese(Chinese characters and Pinyin tones are unicode strings). Then for each Pinyin input sound, a list of characters is obtained by a function like this:

string getCharacters(string aPinyin) {
   string characters = null;
   foreach(string item in pinyins) {
      string[] temp = item.split(':');
      if (temp[0].Equals(aPinyin)) {
          charaters = temp[1];
          break;
      }
   }
   return characters;
}

I wrote a JavaScipt long time ago, where I defined the relationship between Pinyin and Chinese characters. In my blog: Get Pinyin From Chinese Characters, the script can be found by view the source codes or Inspect Element in context menu. In my blog, the script is used to convert Chinese to Pinyin, but the relationship can be used as a reference.

enter image description here

To add smart Pinyin feature--displaying a list of words for Pinyin, this can be done by defining all the commonly used words in the similar pattern: pinyin:words.

share|improve this answer
Hi David, thank you for your answer. Do you think that the users will be able to write everythink they want with this dictionnary? I mean basic stuff like their lastname, firstname, comments about a medical exam. – Rodrigo Mar 13 '12 at 10:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.