I am implementing the Pivot control in Windows Phone 7.
I want to know which Pivot item is selected and active after the user does a swipe gesture.
How to detect the swipe gesture event related to Pivot control?
Which delegate method should I use ?
|
I am implementing the Pivot control in Windows Phone 7. I want to know which Pivot item is selected and active after the user does a swipe gesture. How to detect the swipe gesture event related to Pivot control? Which delegate method should I use ? |
||||
|
|
|
SelectionChanged is the event to wire up to for detecting Pivot item changes. As kP suggests, SelectedIndex/SelectedItem are the properties you can access to see which item is currently selected. Here's an example event handler to show the SelectedIndex each time it changes.
|
||||
|
|
You could use the Pivot.SelectedItem method which is a getter and setter. This will allow you to return the current |
|||
|
|
|
If you want to perform an action once the PivotItem has actually finished loading entirely and transition animation sequence is complete, take a look at the |
|||
|
|