Style 继承
在应用某个主题后,想在此基础上自定义新的样式,可以使用如下方式继承样式。
<Style x:Key="ListViewItemStyle" TargetType="{x:Type ListViewItem}" BasedOn="{StaticResource {x:Type ListViewItem}}" >
<Setter Property="HorizontalContentAlignment" Value="Center"/>
</Style>
<Style BasedOn="{StaticResource BASE}" TargetType="{x:Type Button}"> <Setter Property="BorderBrush" Value="Red"></Setter> </Style>