3
Hello,
I’m developing an application using WPF and window based on Ribbonwindow of Ribboncontrolslibrary and I’m having problems with the Gesture of "Ctrl+0", only with the "Ctrl+Numpad0" I was able to perform the action through the numeric keyboard, but the directly 0 did not. That worked:
<KeyBinding
Command="{StaticResource RestaurarZoomHandler}"
Gesture="Ctrl+NumPad0"/>
Already this here, it didn’t work:
<KeyBinding
Command="{StaticResource RestaurarZoomHandler}"
Gesture="Ctrl+0"/>
Would you know what the problem is?
Really, I read the documentation without attention and ended up going through it.
– Paulo Freitas