I have this code and I want to be able to press Ctrl+O anywhere in my code to open a new document. How is this implemented in the RibbonView?
This is not the complete menu ..
<telerik:RadRibbonBackstage> <telerik:RadRibbonBackstageItem Name="OpenDocument" Header="Open" Icon="{Binding Icons.OpenDocument}" telerik:KeyTipService.AccessKey="Ctrl+o" telerik:KeyTipService.AccessText="Ctrl+o" Command="{Binding OpenCommand}" CommandParameter="DOPE" IsSelectable="False" /> <telerik:RadRibbonBackstageItem Header="Save" Name="SaveWorkSpace" Icon="{Binding Icons.SaveDocument}" Command="{Binding SaveCommand}" IsSelectable="False"/> <telerik:RadRibbonBackstageItem IsGroupSeparator="True" /> <telerik:RadRibbonBackstageItem Header="Recent" IsDefault="True"> </telerik:RadRibbonView.Backstage>This is not the complete menu ..