ToolStrip Scrolling
-
Hi, There is a vertical ToolStrip in my application. ToolStrip buttons are dynamically added. When number of added control increases, all controls that overflows comes into a menu . Is there any way to add a scrollbar or scroll button into the toolstrip to avoid this overflow menu. Thanks in Advance
-
Hi, There is a vertical ToolStrip in my application. ToolStrip buttons are dynamically added. When number of added control increases, all controls that overflows comes into a menu . Is there any way to add a scrollbar or scroll button into the toolstrip to avoid this overflow menu. Thanks in Advance
You can use a panel. 1- Place a panel on your form and dock it for example to left 2- Set the AutoScroll Property of panel to True. 3- Place your Toolstrip in your panel. 4- Set the AutoSize Property of ToolStrip to True and LayoutStyle to VerticalStackWithOverflow Or Table or Flow.