views:

14

answers:

1

I have a ToolStripDropDownButton that has multiple children and I'm using them as checkboxes (CheckOnClick=True) so you can check multiple child items.

My question is: how do I keep the parent item "dropped down" so it doesn't close up every time you click a child item?

A: 

So simple I overlooked it - in the click event handler, just call ShowDropDown() on the parent.

Adam Neal