Catel application-wide commands only in focused control

96 Views Asked by At

Is it possible to register an application command in Catel which would fire only when specific control has a focus?

For example, in the Catel.Examples.WPF.Commanding example, (https://github.com/Catel/Catel.Examples/tree/master/src/NET/Catel.Examples.WPF.Commanding) if I replace TextBlock with TextBox and add RibbonButtons with ApplicationCOmmands.Cut and ApplicationCommands.Paste, these Application commands work only on focused TextBox.

Is it possible to make Refresh command execute only on the DocumentView which has a focus?

Alternatively, is there an example or guidance on using RoutedUICommands with Catel and its ICommandManager?

Thanks, Tom

1

There are 1 best solutions below

2
On

This is possible if you register an empty app-wide command. Then you can add an action / subcommand whenever you initialize a view model and unregister when the vm is closed again. This way, the command will be invoked against all "open" instances (and only be executable if one or more subcommands are available).