Need Panorama App title to be still in Windows Phone 8

276 views Asked by At

I would like to have panorama app title to be still when navigating through the panorama items in Windows Phone 8. Is it possible? If so, How can I achieve that?

1

There are 1 answers

0
halileohalilei On BEST ANSWER

You can create a Panorama without a Title component and use a separate TextBlock with a big font size as your title. Something like this:

<StackPanel>
    <TextBlock FontSize="48">Some Title<TextBlock>
    <phone:Panorama>
        <!--Some content-->
    <phone:Panorama>
<StackPanel>