Auto complete textbox in C# winform with drag and drop?
Does C# has a built-开发者_JAVA百科in auto complete textbox which we can drag and drop in winform design like other controls ?
If there isn't can we create an auto complete textbox manually then put it in the toolbox ?
It is built into Windows and always available, much like the mouse cursor and the caret. You don't explicitly drag it on a form. Set the TextBox' AutoComplete properties to enable it.
try to see this example of code.
http://code.msdn.microsoft.com/Esempio-di-autocompletament-e47dee78
Regards.
精彩评论