I have custom control, derived from combobox.
I want it to not close itself when I select an item. If I set the IsDropDownOpen
property to false in protected override void OnDropDownClosed(EventArgs e)
, this method just starts to chain invoke itself.
If IsDropDownOpen
is set in the OnSelectionChanged
handler nothing happens.
Any suggestions?