I have created a toolstipmenuitem in which i added a lot of toolstripmenuitems as sub menus. And then i restricted the maximum size of the toolstripmenuitem which results in:
Vertical scrolling automatically becomes enabled as shown in the image.
But I need a horizontal scrolling. Is there any way to achieve this?
A working solution:
MouseWheel
,Opened
,Closed
event of yourToolStripDropDown
in the Load event of the formOpened
,Closed
,MouseWheel
events:ToolStripDropDown is
ToolStripMenuItem.DropDown
Hope it help you.