Cant assign SHIFT+Delete KeyGesture to DevExpress bar item in WPF. Is there any restriction on that or am i doing it wrongly?
<dxb:BarButtonItem
x:Name="btnDelete"
Command="{Binding BtnDelete_Command}"
CommandParameter="{Binding ElementName=view}"
KeyGesture="SHIFT+Delete"
Content="Delete" />
Cant assign SHIFT+Delete KeyGesture to DevExpress bar item in WPF. Is there any restriction
Share
Here is the code I tried:
It works properly here. If the editor is not focused, the command is executed. If the editor is focused, it processed this key combination itself and thus command isn’t executed.