Although it might seem too obvious, but still many developers and designers forget that top-margin should be equal to 80 for the content inside Panorama Title(in my example bellow Margin=”0,80,0,0″ for Grid element). Bellow is the XAML markup that you might use to display an image inside Panorama Title in Windows Phone applications.
<controls:Panorama>
<controls:Panorama.Title>
<Grid Margin="0,80,0,0">
<Image Source="{StaticResource ApplicationLogo}"
HorizontalAlignment="Left"
Width="400" Height="50" />
</Grid>
</controls:Panorama.Title>
...
</controls:Panorama>



Not obvious to me, but then again I’m far from a designer. Why is this the case?
Unfortunately, I didn’t quite understand the reason behind that, but I guess if we check the original Panorama Template we might find the answer we are looking for.
Yes you are right ! if we check the original Panorama Template we might find the answer.