Is it possible to know, when a FlipView is sliding back or forth, what item is currently on screen? The only relevant event I can see is SelectionChanged, which only gets raised when the FlipView comes to a rest and not if the person is quickly flipping through multiple items. I want to implement a “page number” indicator that changes even when the FlipView has not come to a rest. I’m using C++/CX.
Share
You could check the ScrollViewer that is part of the control template of the FlipView. To get hold of the control – you would use the VisualTreeHelper to scan the visual tree looking for it. Then perhaps the ScrollViewer’s ViewChanged event would let you see if the FlipView was manipulated.