Win32 API Edit Control text prediction

532 views Asked by At

I was thinking of creating some text prediction for Edit control in winapi and now I'm wondering if such thing already exists. I can't find anything about it.

My idea was to use another Edit control which would appear below the "main" Edit control and I would just use std::find to search in a list of the words I want the second editbox to predict me.
Or just subclass the main edit control and do it that way, that is not so important.

So my final question is, does something like text prediction edit control exist? If not, what is the best way to create it?

0

There are 0 answers