This question is locked. New answers and comments are not allowed.
I noticed the ComboBox doesn't really get focus when you select something. To resolve this, I did the following...
Didn't work to put this in the DropDownOpened event.
Hope this helps someone.
| private void MyRadComboBox_DropDownClosed(object sender, EventArgs e) |
| { |
| Focus(); |
| } |
Didn't work to put this in the DropDownOpened event.
Hope this helps someone.