microsoft / microsoft-ui-xaml

Windows UI Library: the latest Windows 10 native controls and Fluent styles for your applications
MIT License
6.2k stars 669 forks source link

Proposal: Allow disabling AutoSuggestBox TextChanged event delay / disable debounce #9560

Open wondering639 opened 3 months ago

wondering639 commented 3 months ago

Proposal: Allow disabling AutoSuggestBox TextChanged event delay / disable debounce

Summary

Currently it's not possible to configure the delay between multiple TextChanged input events. AutoSuggestBox results won't be updated while a user is typing fast. However that is needed for some use case e.g. when then AutoSuggestBox is part of a launcher application like PowerTools Run. In that case one wants fast updated results, so the delay between the TextChanged input events is cumbersome. See also this Stackoverflow post: https://stackoverflow.com/questions/78343592/how-to-remove-autosuggestbox-delay-debounce

Rationale

Remarks

Delay between multiple TextChanged input events is defined here according to a Stackoverflow comment. What I am missing is an option to set this to 0 / disable it. I am using C#.

wondering639 commented 3 weeks ago

any update on this? :-)