wpf - 命令,上下文菜单
如何将 ContextMenu 放入资源 xaml 文件中并将其命令绑定到当前窗口的命令?
How can I put the ContextMenu in a resource xaml file and bind it's commands to my current window's commands ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将使用您当前的控件 DataContext ,该控件应包含命令属性“
SomeCommand
”EG
在我的 ViewModel 中我将具有以下属性
在我的 View.xaml 中
因此按钮 DataContext 是我的 ViewModel,因此外部文件中的 ResourceDictionary 中的 SomeContextMenu 绑定到与按钮相同的 DataContext,因此在 ViewModel 中找到 SomeCommand。
It will use your current controls DataContext which should hold a command property "
SomeCommand
"E.G.
And in my ViewModel I would have the following property
And in my View.xaml
Therefore the buttons DataContext is my ViewModel, therefore the SomeContextMenu which is in a ResourceDictionary in a external file binds to the same DataContext as the button, and therefore finds the SomeCommand within the ViewModel.