como adicionar efeito para caixa de texto ao estilo

Estou tentando adicionar um efeito ao estilo para reutilizá-lo, mas por algum motivo ele não funciona ...

<Style x:Key="NumericTextBoxStyle" TargetType="{x:Type TextBox}">
    <Style.Resources>
        <TextBox.Effect x:Key="EffectStyle">
            <DropShadowEffect BlurRadius="56" 
                              Direction="392" 
                              Color="#FF872E2E" 
                              RenderingBias="Quality"/>
       </TextBox.Effect>
    </Style.Resources>

    <Setter Property="Height" Value="25"/>
    <Setter Property="Width" Value="120"/>
    <Setter Property="HorizontalAlignment" Value="Right"/>
    <Setter Property="VerticalAlignment" Value="Top"/>
    <Setter Property="TextAlignment" Value="Center"/>
</Style>

mas como adiciono a parte do estilo? (também como declaro o efeito?)

obrigado

questionAnswers(2)

yourAnswerToTheQuestion