Cancel ToolStripDropDownButton dropdown

937 Views Asked by At

I need to programmatically cancel the dropdown of a ToolStripDropDownButton in the DropDownOpening event. However I cannot figure out a way to achieve this.

1

There are 1 best solutions below

0
On

You can either do nothing in the opening event, or disable the control so I can't be interacted with to even generate the opening event:

toolStripDropDownButton.Enabled = false

http://msdn.microsoft.com/en-us/library/system.windows.forms.toolstripitem.enabled