Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to mimic the system's "to" textbox that when you start writing in it , it displays the names and accounts that's associated with the user

I don't know if there's already built in in the development tools or I have to implement it, any ideas ?

share|improve this question
Here is full list of InputScopes: msdn.microsoft.com/en-us/library/… – Pol Dec 14 '11 at 23:24
1  
You could probably get the same sort of thing using the AutoCompleteBox from the toolkit and the Contacts listing. – Jason Haley Dec 15 '11 at 1:01
@JasonHaley - agreed, I am afraid this is only solution. – Pol Dec 15 '11 at 7:44

1 Answer

I'd recommend building your own control that is special-purpose built, as opposed to using something like the AutoCompleteBox control from the Toolkit (that is a big challenge to template or customize like your would like to do).

The ACB only offers single selection, while the To: line in Mail/Messaging effectively allows for many items.

Sorry that there isn't anything built into the platform for this.

Disclaimer: Yes, I wrote the original AutoCompleteBox control for Silverlight, and yes it didn't port well to WP7 (though I did not do that work).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.