将样式添加到 HierarchicalDataTemplate 生成的 MenuItems
我正在使用 HierarchicalDataTemplate 将分层数据添加到菜单控件。
<HierarchicalDataTemplate DataType="{x:Type local:MyType}" ItemsSource="{Binding Path=SubItems}">
<StackPanel>
<TextBlock Text="{Binding Name}"/>
</StackPanel>
</HierarchicalDataTemplate>
我的菜单是这样创建的,
<Menu>
<MenuItem ItemsSource="{Binding MyCollection}" Header="MainItem"></MenuItem>
</Menu>
例如,如何向这些生成的 MenuItems 添加样式以设置 IsCheckable
属性。重要的是,主 MenuItem(此处名为“MainItem”的标题)不应用此样式,因此它不可检查。
我尝试了使用 和
I'm adding my hierarchical data to a Menu-Control using the HierarchicalDataTemplate.
<HierarchicalDataTemplate DataType="{x:Type local:MyType}" ItemsSource="{Binding Path=SubItems}">
<StackPanel>
<TextBlock Text="{Binding Name}"/>
</StackPanel>
</HierarchicalDataTemplate>
My Menu is created like this
<Menu>
<MenuItem ItemsSource="{Binding MyCollection}" Header="MainItem"></MenuItem>
</Menu>
How can a add a style to these generated MenuItems to set the IsCheckable
property for example. It's important that the main MenuItem (header named "MainItem" here) don't applies this style so it's not checkable.
I've tried several approaches using <Style>
and <DataTemplate
but with no success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
或者在你的情况下:
Like this:
Or in you case: