Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

3 Answers

up vote 16 down vote accepted

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.

    private void thisPivot_SelectionChanged(object sender, SelectionChangedEventArgs e) {
        System.Diagnostics.Debug.WriteLine(thisPivot.SelectedIndex);
    }
share|improve this answer
I've used something like this myself works great, you can always set a property here that is read elsewhere to get the currently selected pivot item. – RoguePlanetoid Nov 3 '10 at 9:56

You could use the Pivot.SelectedItem method which is a getter and setter. This will allow you to return the current PivotItem the user is on. Alternatively, you could use the Pivot.SelectedIndex method if you just want to access the indexes of each PivotItem.

share|improve this answer

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 LoadedPivotItem event.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.