我看不到我的PivotItem,它看不见但是Binding是正确的:
我在App.xaml中的模板:
<DataTemplate x:Key="GoldStyle">
<ContentPresenter>
<TextBlock Text="{Binding}" FontFamily="Segoe Script" Foreground="Gold" FontSize="10" Margin="0,70,0,0" />
</ContentPresenter>
</DataTemplate>
My Pivot:
<Pivot HeaderTemplate="{StaticResource GoldStyle}">
<PivotItem Header="Public Profile" >
<Grid>
<TextBlock Text="-Set your Steam Profile to Public (Steam Settings)" FontFamily="Segoe Script" TextWrapping="Wrap" Foreground="WhiteSmoke"></TextBlock>
</Grid>
</PivotItem>
<PivotItem Header="Features">
<TextBlock FontFamily="Segoe Script" Text="-Calculate Price" Foreground="WhiteSmoke"></TextBlock>
</PivotItem>
我做错了什么?
答案 0 :(得分:0)
乍一看我觉得这很奇怪,但唯一的问题是在ContentPresenter的TextBlock中你有Margin =“0,70,0,0”替换为Margin =“0,0,0, 0" 。
所有其他事情都是对的。