What is the use of tunneling the CommandBinding.previewcanexecute event ?
and bubbling the CommandBinding.canexecute event ?? How is it useful
What is the use of tunneling the CommandBinding.previewcanexecute event ?
and bubbling the CommandBinding.canexecute event ?? How is it useful
Copyright © 2021 Jogjafile Inc.
Tunnelling and bubbling events allow handlers to be shared among several elements, and intercepted by controls higher in the hierarchy. For example, given the following Xaml:
If I want to define a single
CommandBinding
forMyCommand
that will affect all of the buttons, I can define it on theStackPanel
. When each button tries to execute its command, the event will bubble upwards to theStackPanel
- meaning that we need only one handler for four buttons. If I placed a handler at the rootWindow
level, it would apply to every button in my application.Conversely, tunnelling an event allows you to intercept it before it gets to the control that fired it. So, for example, if I want to disable a command for every button across my entire
Window
, I could do this with a tunnelling event and the buttons would always find thatCanExecute
returnsfalse
.