Two ways, set AutoClose = false, or handle the Closing event
and set e.Cancel = true. The Closing event should give you a reason - if you want
to prevent the dropdown from being closed when a specific item is clicked - sync
the Opening event, hold onto that item, and when the Closing event comes (and the
e.CloseReason is ItemClicked), cancel the event.