我想在mouseOver上更改MenuItem的颜色。我还需要圆形边框,图像和文本框。当我设置样式时一切正常只有mouseOverEvent正在做任何事情,背景不会改变。我的代码是:
<Style x:Key="BaseStyle" TargetType="MenuItem">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Background" Value="#0a99f3" />
</Trigger>
<Trigger Property="IsKeyboardFocusWithin" Value="true">
<Setter Property="Background" Value="#0a99f3" />
</Trigger>
</Style.Triggers>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type MenuItem}">
<Grid>
<Border Name="MainBorder" BorderThickness="2,2,2,0" CornerRadius="8,8,8,8" Margin="0,0,1,0" BorderBrush="AliceBlue">
<Grid>
<TextBlock Text="Info" Margin="30,10,0,0" FontFamily="Arial" FontSize="14" FontWeight="Bold" />
<Image Width="15" Height="15" Source="menu.PNG" Margin="-100,0,0,0" />
</Grid>
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
希望有人知道我错过了什么。谢谢!
答案 0 :(得分:4)
您正在覆盖模板,但不会在其中的任何位置使用背景颜色,因此永远不会应用该值。
在MenuItem模板中设置背景颜色
<ControlTemplate TargetType="{x:Type MenuItem}">
<Grid Background="{TemplateBinding Background}">
答案 1 :(得分:0)
您没有在模板中的任何位置绑定Background
,因此更改该属性无效。