zoukankan      html  css  js  c++  java
  • 用VS2008,C#在WINCE6.0,软键盘显示隐藏方法

            /// <summary> 
            /// 显示/隐藏 软键盘 方法1      
            /// </summary>
            ///
            public static InputPanel _softKeyBoard = new InputPanel();

            public static void ShowHideSoftKeyBoard(Boolean isShow)
            {
                _softKeyBoard.Enabled = isShow;
            }

            /// <summary>
            /// 显示/隐藏 软键盘 方法2      
            /// </summary>
            /// <param name="isShow"></param>
            /// <returns></returns>
            ///
            [DllImport("coredll", EntryPoint = "SipShowIM")]
            private static extern bool SipShowIM(IntPtr SIP_STATUS);
            private static readonly IntPtr SIPF_OFF = (IntPtr)0x0;
            private static readonly IntPtr SIPF_ON = (IntPtr)0x1;

            public static bool SipShowIM(bool isShow)
            {
                return SipShowIM(isShow ? SIPF_ON : SIPF_OFF);
            }

    例如在tbSend输入获取焦点时,显示软键盘,逝去焦点时隐私软键盘,方法

            private void tbSend_LostFocus(object sender, EventArgs e)
            {
                Common.SipShowIM(false);
            }

            private void tbSend_GotFocus(object sender, EventArgs e)
            {
                Common.SipShowIM(true);
            }

  • 相关阅读:
    Mybaits 的优点
    mybatis中#{}和${}的区别
    springmvc工作流程
    request对象的主要方法有哪些
    如何决定选用HashMap还是TreeMap?
    队列和栈是什么,列出它们的区别?
    fail-fast与fail-safe有什么区别?
    Collections类是什么?
    哪些集合类提供对元素的随机访问?
    可以作为GC Roots的对象包括哪些
  • 原文地址:https://www.cnblogs.com/liujicai/p/3568526.html
Copyright © 2011-2022 走看看