I have read in many places that WPF combo does not support autocomplete but I used the IsEditable property and found that the autocomplete was working in WPF 4. Is this a new addition?
+2
A:
No, it isn't
IsEditable has been around since .NET Framework 3.0
Autocompletion usually means displaying the options and filtering those options based on the letters you type. The IsEditable only selects, it does not display.
See what google does in comparison:
Arcturus
2010-08-26 10:48:54
Thank you but when I type characters in teh WPF combo, it automatically completes it. Isn't this autocomplete?
Jack Shephard
2010-08-26 11:20:37
Yes it is.. but not autocompletion in the google way. It does not show you the options.
Arcturus
2010-08-26 11:34:33