我已经创建了自定义控件,在该样式中,对于不工作的菜单项,我使用BasedOn键来应用样式
通用XAML代码段
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication3">
<Style x:Key="MenuItemStyle" TargetType="{x:Type MenuItem}">
<Setter Property="Height" Value="60"/>
<Setter Property="Background" Value="Red"/>
</Style>
<Style BasedOn="{StaticResource ResourceKey=MenuItemStyle}" TargetType="{x:Type MenuItem}"/>
<Style TargetType="{x:Type local:CustomControl1}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustomControl1}">
<Grid x:Name="MainGrid">
<Menu>
<MenuItem Header="File" />
</Menu>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
样式不适用于MenuItem,而添加下面代码中的样式正在工作,如何使用基于实现这一点,因为在我的scnorio中,我使用了多个菜单项
这里有两个选项
从样式中删除密钥
例如
<Style TargetType="{x:Type MenuItem}">
<Setter Property="Height" Value="60"/>
<Setter Property="Background" Value="Red"/>
</Style>
这将把这种样式应用于范围中的所有菜单项。
注意:如果你发现它不适合你,那么试着在Menu的资源中定义样式。
或者将样式直接应用于菜单项,将键留在样式中
例如
<MenuItem Header="File" Style="{StaticResource MenuItemStyle}"/>
这将只将样式应用于所需的菜单项
这种样式对没有任何作用
<Style BasedOn="{StaticResource ResourceKey=MenuItemStyle}" TargetType="{x:Type MenuItem}"/>