Pivot selectionchanged refired

317 Views Asked by At

This problem has bugged me for 2 days now and I can't seem to solve it.

I've got a Pivot to which I add PivotItems dynamicly, depending on what's selected. Im using the SelectionChanged event and within the event handler I clear & add new items. To select the correct item afterwards Im changing the selectedindex but it seems to change outside the function afterwards. I'll submit the handler (to be noted this is a class based on the Pivot class. Mine is called CalendarPivot and the items are called CalendarPivotItem)

private void CalendarPivot_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            this.SelectionChanged -= CalendarPivot_SelectionChanged;

            this.zoomDate = ((CalendarPivotItem)Items.ElementAtOrDefault(SelectedIndex)).date;

            this.Items.Clear();

            this.Items.Add(new CalendarPivotItem(zoomDate, 2));
            this.Items.Add(new CalendarPivotItem(zoomDate.AddMonths(1), 2));
            this.Items.Add(new CalendarPivotItem(zoomDate.AddMonths(-1), 2));

            this.SelectedIndex = 0;

            this.SelectionChanged += CalendarPivot_SelectionChanged;
        }
1

There are 1 best solutions below

0
On

Use Pivot.UnloadedPivotItem event.