Como fazer o Style.Triggers acionar um estilo nomeado diferente para ser aplicado

Vamos dizer que eu tenho o abaixo:

<Style TargetType="{x:Type TextBox}">
    <Setter Property="BorderThickness" Value="1" />
    <Setter Property="BorderBrush" Value="Gray" />
    <Style.Triggers>
        <Trigger Property="IsFocused" Value="true"> 
            <Setter Property="BorderBrush" Value="Green" />
            <Setter Property="BorderThickness" Value="2" />
        </Trigger>
    </Style.Triggers> 
</Style>

Isso funciona bem e não há nada muito errado aqui, mas é um caso bastante simples. O que acontece se eu quiser ter o estado do estilo IsFocused listado como um estilo exsplicit como fazer referência a esse estilo como sendo o estilo IsFocused, ou seja,

<Style x:key="ActiveStyle" TargetType="{x:Type TextBox}">
    <Setter Property="BorderBrush" Value="Green" />
    <Setter Property="BorderThickness" Value="2" />
</Style>

<Style TargetType="{x:Type TextBox}">
    <Setter Property="BorderThickness" Value="1" />
    <Setter Property="BorderBrush" Value="Gray" />
    <Style.Triggers>
        <Trigger Property="IsFocused" Value="true">
           -- Here I want to reference ActiveStyle and not copy the copy the setters
        </Trigger>
    </Style.Triggers> 
</Style>

questionAnswers(3)

yourAnswerToTheQuestion