In my toolbar, I have a System.Windows.Forms.ToolStripDropDownButton
where I want to show another toolbar. I managed to get it 'working' by adding my toolbar buttons to the DropDownItems
collection:
myToolbar.DropDownItems.AddRange(new ToolStripItem[]
{
myButton1,
myButton2,
myButton3
});
However, this produces a drop down menu with a lot of wasted space:
Instead of a menu, I want to show a toolbar. That is, I want my button images to be displayed side-by-side with no room for extra menu stuff (as shown above). Something like a toolbar button that says 'Command X' with a number of 'Sub command Y' items.
Thanks.