命令输入绑定有效,但快捷方式未显示在菜单项中
问:
我正在使用 Josh Smith 的 使用路由命令实现 MVVM 的命令 。我有一个绑定到命令的 MenuItem
。
输入绑定在父窗口中定义。当我运行程序时,我可以使用键盘快捷键,但MenuItem
在旁边不显示
标头。Control+O
MenuItem
图片:
代码:
命令绑定:
<Window.CommandBindings>
<cmd:CommandSinkBinding Command="vm:MainVM.OpenDialogCommand" />
</Window.CommandBindings>
<Window.InputBindings>
<KeyBinding Command="vm:MainVM.OpenDialogCommand" Key="O" Modifiers="Ctrl"/>
</Window.InputBindings>
菜单项:
<MenuItem Header="Open" Command="vm:MainVM.OpenDialogCommand" />
注意: MenuItem 已设置样式,但删除样式不会产生任何影响。
Question:
I'm using Josh Smith's implementation of commands for MVVM using routed commands. I have a MenuItem
binded to a command.
The input bindings are defined in the parent window. When I run the program, I can use the Keyboard shortcut, but the MenuItem
does not show a Control+O
next to the MenuItem
header.
Pics:
Code:
Command Bindings:
<Window.CommandBindings>
<cmd:CommandSinkBinding Command="vm:MainVM.OpenDialogCommand" />
</Window.CommandBindings>
<Window.InputBindings>
<KeyBinding Command="vm:MainVM.OpenDialogCommand" Key="O" Modifiers="Ctrl"/>
</Window.InputBindings>
Menu Item:
<MenuItem Header="Open" Command="vm:MainVM.OpenDialogCommand" />
Note:
The MenuItem is styled, but removing the style does not make a difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
try this