How to build a Windows Forms email-aware text box?

Posted by Patrick Linskey on Stack Overflow See other posts from Stack Overflow or by Patrick Linskey
Published on 2010-06-16T22:41:52Z Indexed on 2010/06/16 23:02 UTC
Read the original article Hit count: 243

Filed under:
|
|

Hi,

I'm building a C# client app that allows a user to communicate with one or more existing users in a system via an email-like metaphor. I'd like to present the user with a text entry box that auto-completes on known email addresses, and allows multiple delimiter-separated addresses to be entered. Ideally, I'd also like the email addresses to turn into structured controls once they've been entered and recognized. Basically, I'm modeling the UI interaction for adding users after Facebook's model.

Are there any Windows Forms controls out there with the ability to do something like this? Is there any well-established terminology for a hybrid textbox / control list box (no, not a ComboBox) or something that I should be searching for?

Thanks,

-Patrick

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET