WPF Combobox automatic full / case sensitivity intellisense

I am writing a WPF application that has a combo box that has a list of names. The problem I'm running into is that the auto complete / intellisense function ignores case sensitivity. Whether there is a property in the control or in work to enable case sensitivity in auto complete / intellisense.

+2


a source to share


2 answers


Unfortunately, there is no simple property to enable case sensitivity, you will have to implement your own autocomplete to replace or supplement the built-in functions.

Fortunately, others have done so, and there are some examples if you want to take this road:



See AutoFilteredComboBox in this thread @MSDN . Or solutions in these blogs: Auto Filtering ComboBox in WPF , Building Filtering Combobox for WPF

+2


a source


Not sure if this is the case for previous versions. However, in .Net 4.0, the WPF dropdown has two properties IsTextSearchEnabled

(autocomplete) and IsTextSearchCaseSensitive

.



+10


a source







All Articles