日期:2014-05-16 浏览次数:21507 次
if (m.Msg == WM_IME_CHAR)
{
Debug.WriteLine("W:"+m.WParam.ToInt32());
StringBuilder str = new StringBuilder();
int size = ImmGetCompositionString(imeHandle, GCS_RESULTSTR, null, 0);
Debug.WriteLine("size:" + size);
size += sizeof(Char);
ImmGetCompositionString(imeHandle, GCS_RESULTSTR, str, size);
Debug.WriteLine(str.ToString().Substring(0, str.Length));
}