I would like to have a Facebook style dynamic drop down menu on windows forms using csharp.
Any idea how to implement it?
TextChanged event of text box can be used but I don’t know how to visualize it.
For the ones who doesn’t use facebook here is the description.
Normally there is no drop down menu, but when you start typing, it shows automatically your friends whose names are matching and as soon as text is changed it updates content of dropdown menu.
Note: If it helps, devexpress tools also can be used.
Thanks&Regards,
-AFgone
Simply use a textbox and a combobox. Start with the combobox invisible and displayed on top of the textbox. As soon as text is entered, make the combobox visible and set the focus to it. Some sample code: