I would like to have a textbox in a Silverlight app where the user can type in it, and after a few characters are entered the control calls a web service to retrieve a list of potential choices that the user can choose from. Essentially it is a type-ahead combobox but I don't want to keep all of the possible choices in memory I want to load them dynamically after getting some input from the user. I'm hoping that the AutoCompleteComboBox from the Silverlight Toolkit can provide this functionality, but all of the examples I can find use a static list that is kept fully in memory.
Can the AutoCompleteComboBox do this? If so, how? If not, what are my other options?