Windows Mobile 中IME改變事件的捕獲

來源:互聯網
上載者:User

在Windows Mobile開發中遇到一個問題,就是在使用者改變IME時動態改變表單的高度,而IME控制項InputPanel中沒有IME改變的事件,因些要對IME改變的事件進行捕獲。在網上搜尋了到了相關的代碼,但是有一些問題,作了一些修改後可以正常使用。基本原理是對InputPanel進行擴充,通過訊息捕獲添加IME改變的事件InputMethodChanged。代碼如下:

 /// <summary> 
    /// InputPanel擴充類。 
    /// LastUpdate:2007-12-26 NSnaiL 
    /// </summary> 
    public class InputPanelEx : InputPanel
    {
        #region Fields

        /// <summary> 
        /// 當IME切換時發生。 
        /// </summary> 
        public event EventHandler InputMethodChanged;
        private MsgHook Msg;
        internal class MsgHook : MessageWindow
        {
            #region Fields

            private const int WM_SETTINGCHANGE = 0x001A;
            private InputPanelEx BaseObject;

            #endregion

            #region Methods

            public MsgHook(InputPanelEx baseObj)
            {
                BaseObject = baseObj;
            }

            protected override void WndProc(ref Message m)
            {
                if (m.Msg == WM_SETTINGCHANGE)
                    BaseObject.InputMethodChanged(this, EventArgs.Empty);
                base.WndProc(ref m);
            }

            #endregion
        }

        #endregion

        #region Methods

        public InputPanelEx()
        {
            Msg = new MsgHook(this);
        }

        public new void Dispose()
        {
            Msg.Dispose();
            base.Dispose();
        }

        #endregion
    }

 

需要注意的是,在退出表單時一定要調用InputPanelEx的Dispose()方法,否則會出問題。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.