WP7 Office hub panorama header looks like this:

office hub look

What is it?

  • one solid image
  • two images (one for logo, one for "microsoft Office")
  • all vector elements

The answer interests me only because I know how to achieve this only in the first two cases.

Basically I need to create a TextBlock in PanoramaHeaderTemplate, that would be like this:

<TextBlock Foreground="Black"><Run Text="smallBold" FontWeight="Bold"/><Run Text="Normal"></TextBlock>

So the resulting panorama should have a look:

panorama header look

If I use FontWeight directive in the PanoramaHeaderTemplate - it for some reason has no effect.

If I use PanoramaTitleTemplate, I get the controllable text weight, but I have a panorama header element appear for some reason, that only displays a x:Key element name of the PanoramaItem, that results in an appearance of a header I don't need at all. This happens even if I don't define the panorama header.

So which is the correct way to achieve the look on the Panorama "upper element", whether it is Title or Header, that is shown on the smallBold.Normal figure?

link|improve this question

Are you saying that if you use the same markup outside the header template the text is rendered bold as expected, but in the header template it is ignored? – Richard Szalay Sep 19 '11 at 18:12
feedback

2 Answers

up vote 1 down vote accepted

I don't know what Office uses but it's irrelevant because, as a native app, it wasn't created with Silverlight.

You can create the same effect by changing the Panorama.TitleTemplate to contain whatever you want (TextBlocks, images, etc.). You may also have to adjust the defautl Style applied to the template to set a Height and Width for the PanningTitleLayer.

link|improve this answer
Thank you. By now I have figured out that the Title is the correct place to put my App name and logo. The problem with the header was that if I data bind the panorama, I, apparently, need to provide header template. If I don't, I get a Type.ToString() in the place of the header. – Maxim V. Pavlov Sep 20 '11 at 9:32
feedback

It's an image, straight across the panorama. It's very simple, as the panorama view was set up to display long images to support a better scrolling feel for the user. So i would look into using images, as it's easier to achieve, what you are trying to do, with images, rather than a background image.

Some useful related questions/articles:

link|improve this answer
Why was this downvoted? It's the correct answer (abit Keeano should learn to write more coherent. (Answer edited for clarity) – Claus Jørgensen Sep 19 '11 at 20:44
@Claus Jorgensen Thank you! Will Do better in writing more coherent. – Keeano Martin Sep 19 '11 at 21:14
1  
You could start by dropping the random upper-casing of words in the middle of sentences. – Claus Jørgensen Sep 19 '11 at 21:30
@Claus - the answer, as well as the comments that were removed by moderation later, were very rood. Thank you for cleaning it up. – Maxim V. Pavlov Sep 20 '11 at 9:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.