请运行以下代码,并将鼠标光标放在TextBlock上,以查看以下代码在做什么。
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TextBlock Foreground="Blue" Text="www.google.com" Height="20" Width="100">
<TextBlock.Style>
<Style>
<Style.Triggers>
<Trigger Property="TextBlock.IsMouseOver" Value="True">
<Setter Property="TextBlock.Background" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
</Grid>
</Window>
然后从
替换上面的代码<Setter Property="TextBlock.Background" Value="Red"/>
到
<Setter Property="TextBlock.Foreground" Value="Red"/>
然后看到前景不起作用。
您有解决方案使前景像背景一样工作吗?
答案 0 :(得分:4)
不起作用的原因是您在Foreground="Blue"
上明确设置了TextBlock
。这将覆盖样式触发器中的所有值。像这样更改您的XAML:
<TextBlock Text="www.google.com" Height="20" Width="100">
<TextBlock.Style>
<Style TargetType="TextBlock">
<Setter Property="Foreground" Value="Blue"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>