Detect when an item scrolls in a ListView

I would like to know when the item was scrolled in ListView(compared to the standard selection)

ListViewhas a property IsSwipeEnabledthat turns on / off the swipe animation, but I cannot figure out how to detect when the element was actually broken, and I cannot find any event that seems to provide this.

+4
source share
2 answers

You need to either follow the manipulation events, or create your own “Swipe” event, tracking the speed of gestures or creating your own list.

And an example of the latter is here

, , .

, GestureRecognizer, .

+1

OnManipulationDelta , -.

uwp, swipe: https://github.com/brookshi/LLMListView

+1

Source: https://habr.com/ru/post/1546312/


All Articles