I was looking for ways to get enter key in an AutoCompleteBox. But no events supports it. Key Down event of AutoCompleteBox does not trigger the EnterKeyEvent.
Solution:
Create a custom NewAutoCompleteBox then inherit AutoCompleteBox.
Override OnKeyDown Access thebase.OnKeyDown(e); then this will trigger the enter key event.
No comments:
Post a Comment