ComboBox PointerWheelChanged not firing #17134
Unanswered
WoistdasNiveau
asked this question in
Q&A
Replies: 2 comments 4 replies
-
Have you tried a tunneling event? Controls themselves will typically have the first bite of a bubbling event and potentially handle it. If you're specifying the event handler in XAML, it's always a bubbling event. You need to manually AddHandler to create tunneling events. |
Beta Was this translation helpful? Give feedback.
3 replies
-
@WoistdasNiveau maybe you can also try AutoCompleteBox. It has an option for loading items async and user can start typing any character to search for users. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the bug
When using the Combobox and using the PointerWheelChanged event, is does not trigger when one tries to scroll.
To Reproduce
Create a Combobox, create a method to listen for the PointerWheelChanged event
Expected behavior
Should fire the same way as it does for the Datagrid to be able to load Usernames to select, for example dynamically.
Avalonia version
11.1.3
OS
Windows
Additional context
I wanted to use the Combobox to select a user responsible for a task and as i did not want to load all users at once i wanted to implement infinite scroll via the PointerWheelChanged event.
Beta Was this translation helpful? Give feedback.
All reactions