I am having a weird issue with my app. Even if I create a panorama page using the template from Visual Studio 2012, when I load the app, item 2 appears first, for a very short time, and then the view switches to item 1. I'm pretty sure it should not be acting like this. Any ideas what's happening?
<Grid x:Name="LayoutRoot">
<controls:Panorama Title="my application">
<!--Panorama item one-->
<controls:PanoramaItem Header="item1">
<Grid/>
</controls:PanoramaItem>
<!--Panorama item two-->
<controls:PanoramaItem Header="item2">
<Grid/>
</controls:PanoramaItem>
</controls:Panorama>
</Grid>