将 ContextMenu 菜单项数据绑定到现有菜单的菜单项
给定一个名为“main”的菜单,我想编写如下标记:
<Window.ContextMenu>
<ContextMenu ItemsSource="{Binding ElementName=main, Path=Items}" />
</Window.ContextMenu>
这不起作用 - 它似乎创建了一个空的 ContextMenu。
这是菜单的标记:
<Menu Name="main" Grid.ColumnSpan="2" FontSize="14" DockPanel.Dock="Top" HorizontalAlignment="Stretch">
<MenuItem Header="_File">
<MenuItem Header="_Exit" Command="Close" />
</MenuItem>
<MenuItem Header="_Options">
<MenuItem Header="_Show status bar" IsCheckable="True" />
<MenuItem Header="_Group numbers" IsCheckable="True" />
</MenuItem>
<MenuItem Header="_About" />
Given a menu named "main", I want to write markup like the following:
<Window.ContextMenu>
<ContextMenu ItemsSource="{Binding ElementName=main, Path=Items}" />
</Window.ContextMenu>
This doesn't work - it seems to create an empty ContextMenu.
This is the markup for the Menu:
<Menu Name="main" Grid.ColumnSpan="2" FontSize="14" DockPanel.Dock="Top" HorizontalAlignment="Stretch">
<MenuItem Header="_File">
<MenuItem Header="_Exit" Command="Close" />
</MenuItem>
<MenuItem Header="_Options">
<MenuItem Header="_Show status bar" IsCheckable="True" />
<MenuItem Header="_Group numbers" IsCheckable="True" />
</MenuItem>
<MenuItem Header="_About" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处的解决方案就足够了满足我的需求,即使它不使用数据绑定,而是使用菜单项数组作为资源。
从理论上来说,知道这是否可能以某种方式实现仍然很有趣。
The solution here is sufficient for my needs, even though it doesn't use databinding, but an array of menuitems as a resource.
It would still be interesting theoretically to know if this is possible somehow.