I am trying to emulate the Find When You Type function, like the address bar function (awesome bar) in FireFox. I want the tooltip to appear below the text box, and the suggestion box contains lines containing what is in the text box. I looked at the autofill function of a regular WinForms text box, but it seems to only be looking for the beginning of lines.
Has anyone built here or have experience implementing something like this?
edit: Some clarification. This is a WinForms project. It should look inside the string, not just at the beginning (which is a normal text field, if I remember correctly). And the suggestions should appear in a pop-up window, such as autocomplete text field.
source share