Hello,
I'm developing an application using WPF and window based on RibbonWindow from RibbonControlsLibrary and I'm having issues with Gesture from "Ctrl + 0", just with the " Ctrl + NumPad0 "I was able to perform the action through the numeric keypad, but the directly 0 did not. This worked:
<KeyBinding
Command="{StaticResource RestaurarZoomHandler}"
Gesture="Ctrl+NumPad0"/>
Already here, it did not work:
<KeyBinding
Command="{StaticResource RestaurarZoomHandler}"
Gesture="Ctrl+0"/>
Would you know what the problem is?