I would like to create a PanoramaItem that has no header at all. I would like to place some controls in this PanoramaItem and I want them to occupy the whole space. Of course I was able to delete the header text and change the font to smaller, but still there are some margins left. This might be easy, but I am new to WP7 development...

Is it possible to achieve and how?

Thanks in advance!

link|improve this question

62% accept rate
feedback

2 Answers

Negative top margin may be the quickest way to get rid the stubborn header padding.

   <controls:Panorama Margin="0,-25,0,0">
   </controls:Panorama>
link|improve this answer
feedback

You need to modify Styles of Panorama. There is was a question recently for Pivot here: Creating Pivot Footers on Windows phone 7 application, but you can do the same with a Panorama

link|improve this answer
Ok. Is it possible to make a new style by inheriting a default style and just changing the margins or sth? – pajton Dec 2 '11 at 17:45
Yes. Just remove the Header block and adjust Item to fill the whole page. – Ku6opr Dec 3 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

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