这是我的代码
<TextBlock Text="5000.00" FontSize="20" >
<!--<TextBlock.TextDecorations>
<TextDecoration Location="Underline">
<TextDecoration.Pen>
<Pen Brush="Green"></Pen>
</TextDecoration.Pen>
</TextDecoration>
</TextBlock.TextDecorations>-->
<TextBlock.Style>
<Style TargetType="TextBlock">
<Style.Triggers>
<Trigger Property ="IsMouseOver" Value="True">
<Setter Property= "Foreground" Value="Black"/>
<Setter Property="TextDecorations" Value="Underline" />
</Trigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
这一切对我来说都没问题,我不确定这里的错误是什么。