I have a textblock with a style xxx that sets some properties, I want to also add add inline styles without replacing the xxx. But when it doesn't let me use <TextBlock.Style> when 'style=' is already set.
<TextBlock Style="{StaticResource xxx}">
<TextBlock.Style>
<Style TargetType="TextBlock">
<Setter Property="Text" Value="zzz"/>
</Style>
</TextBlock.Style>
</TextBlock>