私は実際にちょうど閉じ可能なtabItem(コードではTabItemを継承する)であるUserControlを作成しましたが、正しい方法でスタイルを設定する方法がわかりません
<UserControl x:Class="CloseableHeader"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" Margin="0" d:Height="32" d:Width="112" >
<Grid>
<Button Height="21" HorizontalAlignment="Right" Name="button_close" VerticalAlignment="Top" Width="24" FontFamily="Courier" FontWeight="Bold" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" FontStretch="Normal" Visibility="Visible" FontSize="14" Padding="0" ToolTip="Close" Margin="0,5,5,0">
<Image Height="19" Width="20" RenderTransformOrigin="0.45,0.5" Source="close.png"/>
</Button>
<Label Content="TabItem" Height="28" HorizontalAlignment="Left" Margin="4,2,0,0" Name="label_TabTitle" VerticalAlignment="Top" FontFamily="Verdana" FontSize="14.667" Foreground="#FD000000" />
</Grid>
</UserControl>
なぜ背景がまだ白いのか教えてください。透明にする必要があります。