vain0x

Results 34 comments of vain0x

Thanks. Unfortunately this library does not have such features. > there a way to have the drop down always shown? This library doesn't match the use case. This library closes...

No, I'm not sure about signing.

Signing seems to need some amount of work; but I'm uncertain how it's helpful or necessary. Pull request is welcome.

Quick answer: Create a class inheriting from `AutoCompleteComboBoxSetting`, override `MaxSuggestionCount` property, and bind an instance to `AutoCompleteComboBox.Setting` property. I hope someone write an example... :thinking:

Thanks and sorry for late response. I tried in the demo app but I couldn't observe the problem... (at current master 39e1f0e) I would be glad if reproduction code is...

Thanks for suggestion. I tried to reproduce your situation (SelectedItem is unset) in the demo app but couldn't...: https://github.com/vain0x/DotNetKit.Wpf.AutoCompleteComboBox/commit/08c474560c42d562ce835354529e1aa8736b49bf It seems Text is filled by resolving `TextPath` rather than `DisplayPath`,...

Thanks. It would be nice. Modifying the behavior of `SelectedItem` seems difficult. Instead, it may be easy to make a property to hold the committed item, and update the property...

Hello. Your suggestion looks good! Thank you.

I think `GetFilters` is not flexible. It can be generalized to: ```csharp public virtual Func Priority(string query, Func text) { return item => { if (filter1(query, text)(item)) return 0; if...

I would like to suggest `expr.try` (pick any keyword for `try`), which works same as `expr?` and is parsed same as `expr.await`. Having both `ident?` and `expr?` is technically okay....