DelegateCommand 与 RoutedCommand 和手势 - WPF
在构建复合 WPF 应用程序时,DelegateCommand 是否支持手势?我正在尝试创建一个由 MenuItem 和 Button 使用的命令,可以通过键盘快捷键访问该命令,但它位于单独程序集中的类内。
我可以使用 RoutedCommand,但我想最小化任何隐藏代码。
is there anyway for DelegateCommand's to support gestures when building a composite WPF app? I'm trying to create a command used by a MenuItem and also a Button, which can be accessed through a keyboard shortcut, but which sits inside a class in a separate assembly.
I can use a RoutedCommand, but I want to minimise any code-behind.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 InputBindingCollection 通过 ICommand 映射手势。
Use InputBindingCollection to map gestures with ICommand.