컨테이너 내의 범위에 적용된 여백 또는 패딩을 사용하십시오.
<StackPanel>
<StackPanel.Resources>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Margin" Value="0,10,0,0"/>
</Style>
</StackPanel.Resources>
<TextBox Text="Apple"/>
<TextBox Text="Banana"/>
<TextBox Text="Cherry"/>
</StackPanel>
편집 : 두 컨테이너 사이의 여백을 다시 사용하려는 경우 여백 값을 외부 범위의 리소스로 변환 할 수 있습니다.
<Window.Resources>
<Thickness x:Key="tbMargin">0,10,0,0</Thickness>
</Window.Resources>
그런 다음 내부 범위에서이 값을 참조하십시오.
<StackPanel.Resources>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Margin" Value="{StaticResource tbMargin}"/>
</Style>
</StackPanel.Resources>