PivotControl で PivotItems ヘッダー間の間隔を設定する方法は? 私はタブ付きのデザインに取り組んでいます.pivotItemsヘッダーをアイコンでカスタマイズできましたが、それらの間に間隔を設定する方法がわかりません.
ここに私のxamlがあります:
<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>