The snippet below is from an application for a machine shop which has a rather utilitarian menu.... I've been asked to add hot keys to some of the items; one of the menu items (as seen in the code below) I need to add the F6 key as a hotkey (note the idendical Command for clicking vs hotkey)... clicking on it works as desired, but the hotkey has seemingly no effect whatsoever.
What am I missing, or otherwise doing wrong? Thanks in advance for your help.
<telerik:RadMenuItem Name="ToolsMenu" Header="Tools">
<telerik:RadMenuItem Name="ToolsUseFinishLocationMenuItem" Header="Use Finish Location For Bin" Command="{Binding ToolsUseFinishLocationForBinCommand}" InputGestureText="F6">
<telerik:RadMenuItem.InputBindings>
<KeyBinding Key="F6" Command="{Binding ToolsUseFinishLocationForBinCommand}" />
</telerik:RadMenuItem.InputBindings>
</telerik:RadMenuItem>
</telerik:RadMenuItem>