C#在Win10與非Win10 Windows系統滑鼠滾動編程的一點區別。

來源:互聯網
上載者:User

標籤:form   write   解決   else   編程   nta   log   事件   term   

C#在win10和非Win10上處理滑鼠滾動有一些區別,建一個Form1,放置一個FlowLayoutPanel ,類型的Panel1

Panel.MouseWheel += PanelOnMouseWheel;private void PanelOnMouseWheel(object sender, MouseEventArgs mouseEventArgs) {     if (mouseEventArgs.Delta < 0)             ScrollBar.Value = ScrollBar.Value == ScrollBar.Maximum ? ScrollBar.Maximum : ++ScrollBar.Value;         else             ScrollBar.Value = ScrollBar.Value == ScrollBar.Minimum ? ScrollBar.Minimum : --ScrollBar.Value;      }

以上代碼在win10上,只要滑鼠在Panel1客戶區範圍內,那麼滾動滑鼠滾輪時,就能觸發滾動事件,但是在非win10上,如果焦點不在Panel上,比如在Form1表單一個Button上,那麼就不能觸發滾動事件。

解決辦法

        [DllImport("user32.dll")]        public static extern IntPtr GetFocus();

需要判斷焦點按鈕是否是本視窗子控制項,使用IMessageFilter。

       const int WM_MOUSEWHEEL = 0x020A;        public bool PreFilterMessage(ref Message msg)        {                                    if (msg.Msg == WM_MOUSEWHEEL)            {                if ((CheckControl(this.Parent, GetFocus())))                {                    int wpara = (int)msg.WParam;                    if ((wpara & 0x80000000) == 0x80000000)//向下                        ScrollBar.Value = ScrollBar.Value == ScrollBar.Maximum ? ScrollBar.Maximum : ++ScrollBar.Value;                    else                        ScrollBar.Value = ScrollBar.Value == ScrollBar.Minimum ? ScrollBar.Minimum : --ScrollBar.Value;                                    }                return false;            }            return false;        }
public bool CheckControl(Control control, IntPtr handle)        {            if (control == null)                return false;            try            {                for (int i = 0; i < control.Controls.Count; i++)                {                    var v = control.Controls[i];                    if (handle == v.Handle)                    {                        return true;                    }                    else                    {                        if (v.Controls.Count > 0)                        {                            if (CheckControl(v, handle))                            {                                return true;                            }                        }                    }                }            }            catch (Exception e)            {                Console.WriteLine(e);                return false;            }            return false;        }

如果有更好的解決辦法請指點。

C#在Win10與非Win10 Windows系統滑鼠滾動編程的一點區別。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.