我正在使用矩形自定义菜单项。我需要删除默认菜单项中的所有特征,并将自定义矩形添加到菜单中。我不确定菜单项的哪些属性应该覆盖?有什么帮助吗?
答案 0 :(得分:1)
定义一个这样的模板:
<ControlTemplate x:Key="customMenuItem" TargetType="{x:Type MenuItem}">
<WrapPanel Background="Gray" Margin="3">
<Rectangle Fill="Black" Width="16"/>
<ContentPresenter Content="{TemplateBinding Header}"/>
</WrapPanel>
</ControlTemplate>
然后将其用作任何菜单项的模板。
<Menu>
<MenuItem Template="{StaticResource customMenuItem}" Header="some text"/>
</Menu>