c# - ScintillaNET autocomplete -


where should insert list of autocomplete in scintillanet.

list<string> s = new list<string>();  s.add("include();"); s.add("test"); s.add("test2");  s.sort();  scintilla1.autocomplete.list = s; scintilla1.autocomplete.show(); 

i have tried insert in function set options doesen't work. if paste text function scintilla1_charadded(), pop-up open always, , dificult write something.

try calling autocshow word list second argument this:

scintilla1.autocshow(lengthentered, s); 

where lengthentered integer of entered characters , s list of words.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -