Can I find out when a particular panorama item is displayed

I have a list of panorama elements.

I want to know when the user has reached a certain point in the panorama, and then will take the necessary actions.

I tried using the GotFocus event handler for the panorama element, but it does not start when the user reaches the element

+6
source share
1 answer

The Panorama control has a SelectionChanged event that fires when a user moves from one item to another. You can then use the SelectedItem or SelectedIndex properties to find the item that is currently displayed.

+11
source

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


All Articles