why is it that sometimes setting the ItemsSource property on a Pivot control calls the SelectionChanged event, and sometimes it doesn't?
myPivot.ItemsSource = (ObservableCollections)someList;
it seems when i'm launching the app fresh from the app list, if i set the ItemsSource, the SelectionChanged event is always called. however, if i navigate away, tombstone the app (hit the home button) and then navigate back (hit the back button) to the original page, even though ItemsSource is set, SelectionChanged is never raised.