wince程序中调用软键盘:
#region import 软键盘
public static uint SIPF_OFF = 0x00;//软键盘关闭
public static uint SIPF_ON = 0x01;//软键盘打开
[DllImport("coredll.dll")]
public extern static void SipShowIM(uint dwFlag);
#endregion
SipShowIM(SIPF_ON); // 打开软键盘
SipShowIM(SIPF_OFF); //关闭软键盘