简体   繁体   中英

How do I style a submenu of a ContextMenu in wpf

I can style the contextmenu (.style) containing the items and I can style the menu items fine (.ItemTemplate). But how do I style the submenu that pops out when a menuitem has menuitems?

Like:

<ContextMenu>
    <MenuItem Header="Font Style">          
                <MenuItem Header="Under Line" IsCheckable="true"/>
                <MenuItem Header="Italic" IsCheckable="true"/>
                <MenuItem Header="Bold" IsCheckable="true"/>
    </MenuItem>
</ContextMenu>
<ContextMenu>
    <ContextMenu.Resources>
        <Style x:Key="submenuStyle" TargetType="{x:Type MenuItem}">
            <Setter Property="FontWeight" Value="Bold" />
        </Style>
    </ContextMenu.Resources>
    <MenuItem Header="Font Style">          
        <MenuItem Style="{StaticResource submenuStyle}" Header="Under Line" IsCheckable="true"/>
        <MenuItem Style="{StaticResource submenuStyle}" Header="Italic" IsCheckable="true"/>
        <MenuItem Style="{StaticResource submenuStyle}" Header="Bold" IsCheckable="true"/>
    </MenuItem>
</ContextMenu>

FROM Aran Mulholland's answer:

I think this is your answer. Because the submenu IS a MenuItem, just apply the style to the submenu...

<ContextMenu>
    <MenuItem Head="Font Style" Style="{StaticResource submenuStyle}" ...>
        <MenuItem ... />
        <MenuItem ... />
    </MenuItem />
</ContextMenu>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM