Hi,
I have a menu strip with a dropdown in which the user can select (check/uncheck) from a list of 6 options. Slightly annoying feature is that after the user checks one item, the dropdown closes so they then have to click the menu to open the dropdown before they can make their next selection. I have got round this by setting menustrip1.dropdown.autoclose = false
when the dropdown opens, so the user can check/uncheck from the list as required.
The next problem is that the menu dropdown now doesn't close at all once it has been opened.
I have been looking at the OptionToolStripMenuItem_MouseLeave
event to either set menustrip1.dropdown.autoclose = true
or to trigger menustrip1.dropdown.close()
but neither close the dropdown.
Should I be triggering these commands from a different event, or am I using the wrong triggers?
Many thanks
Toomutch