The combo dropdown opening on PageDown is fine. Having the enter key select the item is an issue because we have default buttons on all of our pages. The buttons fire when the enter key is pressed in the dropdown. If I could stop that I guess that would fix my issue. If I set CanKeyboardNavigationSelectItems to true then the user can tab off the control after selecting an item instead of pressing enter. However the selection changed event is fired everytime they arrow down or up in the dropdown. In the selection handler I can check if the dropdown is open but it is always open until they tab off and at that point the event doesn't fire anymore.
I guess what I really want is tab off to work the same way as the enter key and that is to select the currently highlighted item in the dropdown. Or don't route the enter key event further than the combobox when the dropdown is open and enter is pressed.
I guess what I really want is tab off to work the same way as the enter key and that is to select the currently highlighted item in the dropdown. Or don't route the enter key event further than the combobox when the dropdown is open and enter is pressed.