How would you implement a hotkey for the Approve RadButton in the following code snippet?
| <telerik:RadButton Name="btApproveReport" Click="btApproveReport_Click" Margin="10,0,10,0" Width="Auto" HorizontalContentAlignment="Center" MaxHeight="30" VerticalContentAlignment="Center" > |
| <telerik:RadButton.Content> |
| <StackPanel Orientation="Horizontal" Margin="4 0"> |
| <TextBlock Text="Approve" Foreground="DarkGreen" FontSize="12" /> |
| <Image Source="pack://application:,,,/Resources/CheckMark.png" Margin="5 0 0 0" Height="16" Width="16" /> |
| </StackPanel> |
| </telerik:RadButton.Content> |
| </telerik:RadButton> |