I would like to change the properties of the Border control that is a child of the default Label control. I have the following style and everything except the changes to the Border control are being shown in the UI
<Style x:Key="StandardLabel" TargetType="{x:Type Label}" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="ContentStringFormat" Value="{}{0:0.000}"/>
<Setter Property="Height" Value="25"/>
<Setter Property="Margin" Value="0"/>
<Style.Resources>
<Style TargetType="{x:Type Border}" >
<Setter Property="Padding" Value="3"/>
</Style>
</Style.Resources>
</Style>
I used this answer as the basis for what I am trying, but it does not seem to work for me. Any thoughts on what I am doing wrong?