ContextMenuBaseStyle
上下文菜单默认样式,不推荐直接使用,应该始终被其它样式以BasedOn的方式使用。
everything can be handy
上下文菜单默认样式,不推荐直接使用,应该始终被其它样式以BasedOn的方式使用。
用例:
1
2
3
4
5
6
7<ContextMenu ItemsSource="{Binding DataList}">
<ContextMenu.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding DataList}">
<TextBlock Text="{Binding Name}"/>
</HierarchicalDataTemplate>
</ContextMenu.ItemTemplate>
</ContextMenu>