I have a Window
element which contains a RibbonMenue
. Within this Window
there are some UserControls
. In one of the UserControl
is a DataGrid
. I created a ICommand
which lets me add and delete rows from the DataGrid
.
The problem is that I somehow need access to these ICommands
from the RibbonMenu
, but I just can access them at the "higher level" (the Window) since they are declared and bound to the ViewModel
which is bound to the UserControl
.
How can I create ICommands
which can be called globally? Note that the ICommand
needs a reference to my ViewModel
which is behind the UserControl
since I need to delete rows from it and so on.
The traditional MVVM way to do "global commands" is to use CompositeCommand. You'll have a GlobalCommands.cs file which contains a static class called GlobalCommands.
In it, you'll have your ICommand properties which return a CompositeCommand instance. Then, any VM that is interested in the command can attach to it in thier constructor: GlobalCommands.SomeCommand.RegisterCommand(...). Your UI would attach to the GlobalCommands commands.
So GlobalCommands will hold the CompositeCommand which is just an empty shell / holder command and the VMs will register a normal RelayCommand with the composite command and handle the command. Multiple VMs can register with the same command and all will be called.
The more advanced CompositeCommand implementations also include a IActiveAware feature that can make the CompositeCommand only send the canexecute/execute to the "active" vm's.
I believe CompositeCommand originally came from Prism, but many folks (including myself) have just broken it out for use in non Prism applications.