如何在 PivotControl 中设置 PivotItems 标题之间的间距?我正在研究选项卡式设计,我能够使用图标自定义 pivotItems 标题,但我不知道如何设置它们之间的间距。
这是我的xml:
<controls:Pivot Title="Tabs" FontSize="50" FontWeight="Bold" HorizontalAlignment="Center" Padding="0,0,0,0" Width="480" Margin="0,0,0,0">
<!--Pivot item one-->
<controls:PivotItem Name="tab1" Margin="0,0,0,0" Padding="0,0,0,0">
<controls:PivotItem.Header >
<ContentControl>
<StackPanel Orientation="Vertical" Background="#787878" Width="150">
<Image Source="Images/tab_home.png" Height="80" Width="80"/>
<TextBlock Text="Listen" FontSize="32" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</StackPanel>
</ContentControl>
</controls:PivotItem.Header>