Skip to content

Instantly share code, notes, and snippets.

@ik9999
ik9999 / font_size_winphone_8.txt
Created October 31, 2015 23:07
How to change font size for pivot titles in Windows Phone 8.1
<Pivot x:Uid="Pivot" Title="JOBSHUNTER" x:Name="pivot" FontSize="12" Margin="0,12,0,0">
<Pivot.HeaderTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" FontSize="32" />
</DataTemplate>
</Pivot.HeaderTemplate>
<Pivot.TitleTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" FontSize="18" />
</DataTemplate>