Внутри App.xaml у меня может быть:
<Style TargetType="{x:Type Button}" x:Key="roundButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate Target="{x:Type Button}">
bla bla bla...
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
против.просто иду
<ControlTemplate Target="{x:Type Button}" x:Key="roundButton">
bla bla bla...
</ControlTemplate>
Я запутался, что мне использовать / в чем разница?