chobo2
chobo2

Reputation: 85765

Make WP7 Panorama Item Title Smaller or Wrap?

My text is getting cutoff in my Panorama View, I am wondering is there away to wrap the text or make it smaller so it won't get cutoff?

Thanks

Upvotes: 0

Views: 89

Answers (1)

Shawn Kendrot
Shawn Kendrot

Reputation: 12465

Have you tried changing the TitleTemplate?

<phone:Panorama Title="my application">
    <phone:Panorama.TitleTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding}" FontSize="50" Margin="0,50,0,0"/>
        </DataTemplate>
    </phone:Panorama.TitleTemplate>
</phone:Panorama>

Upvotes: 2

Related Questions