如何将RibbonButton绑定到带参数的命令?

时间:2017-06-06 12:06:49

标签: wpf mvvm ribbon ribbon-button

我有一个ribbon,有很多ribbon-tabsribbon-buttons。 这是一个对许多观点起作用的常见Ribbon。我需要引用XamDataGrid以便ribbon-button挂钩命令正确执行。

我不知道如何传递对功能区的引用,甚至处理它,请记住这是一个常见的Ribbon菜单。

请注意我正在使用MVVM

谢谢

1 个答案:

答案 0 :(得分:1)

看看telerik网站。 http://docs.telerik.com/devtools/wpf/mvvm-helpers/common-event-to-command-behavior

<telerik:EventToCommandBehavior.EventBindings>
<telerik:EventBinding Command="{Binding CustomCommand}" EventName="MouseLeftButtonDown" RaiseOnHandledEvents="True"
                      CommandParameter="This is a command parameter!"/>