Lets say I have an AutoCompleteBox with 1000 items.
- A user first types two characters returning a broad result set (for example, 100 items).
- They then scroll to the bottom of the list and...
- They then select the last item which closes the dropdown.
- The user then returns to the AutoCompleteBox and enters a more refined search returning, say, 25 items.
- Because the previously selected item was at the bottom of the dropdown, the AutoCompleteBox shows the last element(s) of the new search result, instead of displaying the first items at the top of the list.
How do I force the AutoCompleteBox to display the results starting with the first item in the list?