I am trying to make myself an AutoCompleteTextBox that when typed into will show suggestions in a drop down.
I managed to get this working (with a few niggles) by writing a new user control from scratch.
However, after some reading it seems this "reinventing the wheel" approach is not recommended and it got me thinking the functionality i have is very close to a combo box, that has a textbox instead of a toggle button.
Is there any way for me to extend ComboBox, changing it's template slightly and allowing me to write a few methods for populating the drop down items based on the text entered?