Reputation:
I want to change the color of Header inside PivotItem, i tryed a lot but doesn't works.
<PivotItem x:Name="PivotInfo" Header="Informações" Margin="0,10,0,-0.5">
.......
Upvotes: 0
Views: 567
Reputation: 851
<Pivot>
<Pivot.HeaderTemplate>
<DataTemplate>
<TextBlock
Text={Binding} />
</DataTemplate>
</Pivot.HeaderTemplate>
</Pivot>
you can style this textblock
Upvotes: 1