The other day I was playing with WP7 Panorama’s Control and the default Title was HUGE! I wanted to change it, but wasn’t sure how to do so. After reading the docs I found the TitleTemplate property, which allows you to create the template used for the Title.
Here’s how I use it:
1: <controls:Panorama.TitleTemplate>
2: <DataTemplate>
3: <TextBlock Text="{Binding Content, RelativeSource={RelativeSource TemplatedParent}}" FontSize="100" Margin="0,50,0,0" />
4: </DataTemplate>
5: </controls:Panorama.TitleTemplate>
Happy Programming!