How can I scroll my panel using my mousewheel?

前端 未结 9 1551
情歌与酒
情歌与酒 2021-01-17 09:19

I have a panel on my form with AutoScroll set to true so a scrollbar appears automatically.

How can I make it so a user can use his mouse wheel to scroll the panel?

相关标签:
9条回答
  • 2021-01-17 09:57

    The solution (seen above) provided by Beam022 worked for me while many of the other solutions did not. In my case, I was attempting to scroll a DataGridView control with the mousewheel event.

    The DataGridView_MouseWheel event handler was being called but the FirstDisplayedScrollingRowIndex value never changed. The value was always '0' even after explicitly setting it to 1. It's as if the property were read only.

    Still repro's in .Net Framework 4.6.

    0 讨论(0)
  • 2021-01-17 10:05

    In the designer file, you can add the following line of code. the MouseWheel event is not doumented in Events list in the Properties window.

    this.Panel1.MouseWheel+= System.Windows.Forms.MouseEventHandler(this.Panel1_MouseWheel);
    

    Panel1_MouseWheel will be triggered when you roll the mouse weel

    Add the code in the .cs file

    0 讨论(0)
  • 2021-01-17 10:11

    In my case, the whole client area of the panel was occupied by UserControls (not a single pixel of the inner area visible, except the scrollbars).

    In this case the panel doesn't get the mouse-events and will never focus (apperently, clicking on the scrollbar does not count as "being inside the panel").

    I had to add the following lines to the constructor of my UserControl derived class:

    MouseEnter += delegate {
       Parent?.Focus();
    };
    

    Now it works fine, as I have no scrollable content in the UserControls.

    0 讨论(0)
提交回复
热议问题