Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tag editing in a WPF TextBox

Tags:

wpf

textbox

I want to implement a custom TextBox that will allow me to edit tags. Hotmail's "To" TextBox is the best example I can think of:

enter image description here

Also Facebook's "To" implements the same concept:

enter image description here

Oh yeah, and StackOverflow does it too to tag a question :)

Does anyone have some experience in building something like that in WPF? What would be the first steps that I should make?

like image 880
Claudiu Constantin Avatar asked Sep 08 '25 17:09

Claudiu Constantin


1 Answers

I believe this Tokenizing control does most of what you're looking for:

http://blog.pixelingene.com/2010/10/tokenizing-control-convert-text-to-tokens/

like image 191
RegisteredUser Avatar answered Sep 10 '25 06:09

RegisteredUser