Assigning all StackPanel child element margin

I am trying to set the margin for all elements in stackpanel from resor. Can you point out why it's not working here?
XAML       
<StackPanel.Resources>
            <Style x:Name="marginSetter"
                   TargetType="{x:Type FrameworkElement}"> 
                <Setter Property="Margin"
                        Value="{StaticResource tbMargin}" />
            </Style>
        </StackPanel.Resources>
Was this page helpful?