Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have some menus that contain many menuitems. Mouse wheel doesn't scroll them. I have to use the keyboard arrows or click the arrows at top and bottom. Is it possible to use the mouse wheel to scroll toolstrip menu items? in vb.net Thanks
Posted

1 solution

This is the way the Windows controls work: you will see the same thing in every other Windows form (for example, the Favorites menu in an IE browser with a large number of bookmarks.) You cannot override this behavior unless you write your own menu controls to implement what you want, and that is a very complex situation.

A much better solution -- and probably why Microsoft implemented menus the way they did -- is to organize things into sub-menus. Looking again at IE, you have the top-level View menu, then several sub-menus such as Text size. If you must implement a list of menu items that are arbitrarily long, your only options are to make due or write your own.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900