The multi selection combo box is a WPF custom control with multiple item selection capabilities, along with customizable features to group, sort and filter items in the collection.
Apache License 2.0
182
stars
55
forks
source link
UpdateAutoCompleteFilterText uses ToString of the item #53
Should be solved with PR #77. You can now set an IAutoCompleteService object that implements a GetAutoCompleteString method to replace item.ToString().
private void UpdateAutoCompleteFilterText(string criteria, object item)
method uses ToString to autocomplete the items.This would require an autocomplete service to have clean suggestions (and not the type of the classes by default)