auto complete textbox -xamarin -java -javafx -WPF -Telerik -jQuery -JavaScript -PHP -ASP -ASP.NET -ng2 -ng4
Use the AutoCompleteCustomSource, AutoCompleteMode, and AutoCompleteSource
https://www.c-sharpcorner.com/article/autocomplete-textbox-in-C-Sharp/
Source code
http://www.emoreau.com/Entries/Articles/2012/04/A-more-useful-auto-complete-Textbox-control.aspx
http://www.emoreau.com/Entries/Articles/2006/06/The-TextBox-and-the-MaskedTextbox-controls.aspx
http://www.emoreau.com/Entries/Articles/2012/04/EMoreauAutoCompleteDemo.zip
AutoComplete TextBox for WinRT
http://www.mindscapehq.com/products/metroelements/controls/autocomplete-textbox-for-winrt
https://stackoverflow.com/questions/796195/c-sharp-autocomplete
var acsc = new AutoCompleteStringCollection();
textBox1.AutoCompleteCustomSource = acsc;
textBox1.AutoCompleteMode = AutoCompleteMode.None;
textBox1.AutoCompleteSource = AutoCompleteSource.CustomSource;
https://www.experts-exchange.com/articles/12252/AutoComplete-TextBox.html
Autocomplete TextBox working with Database values C#
http://net-informations.com/q/faq/autocomplete.html
Autocomplete ComboBox
http://net-informations.com/q/faq/autocombo.html
ComboBox
http://net-informations.com/q/faq/combovalue.html
Numeric TextBox
http://net-informations.com/q/faq/txtbox.html
KeyDown, KeyPress, KeyUp - Handle arrow key events in Windows Forms in C#
http://net-informations.com/q/faq/arrowkeys.html
KeyDown, KeyPress, KeyUp
http://csharp.net-informations.com/gui/key-press-cs.htm
Difference between the KeyDown Event, KeyPress Event and KeyUp Event
KeyDown Event : This event raised as soon as the user presses a key on the keyboard, it repeats while the user keeps the key depressed.
KeyPress Event : This event is raised for character keys while the key is pressed and then released. This event is not raised by noncharacter keys, unlike KeyDown and KeyUp, which are also raised for noncharacter keys
KeyUp Event : This event is raised after the user releases a key on the keyboard.
HAY HAY HAY
https://www.codeproject.com/Articles/365974/Autocomplete-Menu
https://www.codeproject.com/Articles/16942/AutoComplete-TextBox
https://www.codeproject.com/Articles/243368/AutoComplete-Textbox
http://net-informations.com/q/faq/custom.html
http://csharp.net-informations.com/statements/csharp-exceptions.htm