语法
<Style x:Key="tb1" TargetType="TextBlock"> <Setter Property="FontSize" Value="30"/> <Setter Property="Foreground" Value="Red"/> </Style> <Style x:Key="tb2" TargetType="TextBlock" BasedOn="{StaticResource tb1}"> <Setter Property="Foreground" Value="Green"/> <Setter Property="FontWeight" Value="Bold"/> </Style>
当某个基准样式与 BasedOn 样式具有同一个属性时,将使用在 BasedOn 样式中设置的属性值。
时间: 2024-10-11 22:49:54