vote up 2 vote down star

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? Thanks SO.

flag

2 Answers

vote up 3 vote down check

The panel or a control in the panel must have focus. Note that if the control with focus has scroll bars, it will scroll instead of the panel.

link|flag
Hi John, so I just set the Focus() to the panel controller and it should scroll? – Papuccino1 Oct 21 at 13:12
Exactly. You can call panel1.Focus() or just click on something in the panel and it will scroll. – Jon B Oct 21 at 13:13
I just tried this and it doesn't work. The mouse wheel has no effect on the panel's scrollbars. Maybe I'm doing something wrong. – MusiGenesis Oct 21 at 13:19
@MusiGenesis: create a project with a panel set to autoscroll with a button in it. Add another control well below the button and size the panel so you can't see the second control. At runtime, click the button (to make the panel have focus) and you'll be able to scroll. You could also use panel.Focus() instead of clicking the button inside it. – Jon B Oct 21 at 13:23
@Jon B: I did all that, and still no scrolling effect from the wheel. I am able to scroll up and down with the wheel in IE, so I know the wheel is working. – MusiGenesis Oct 21 at 13:24
show 1 more comment
vote up 0 vote down

Moving the scroll wheel should trigger the control's MouseMove event. The MouseEventArgs argument has a property named Delta, which gives the (signed) number of notches that the mouse wheel has moved. You can use this property to scroll the panel.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.