I am trying to override the default behaviour for copy to clipboard from the PDF control when invoked from the keyboard.
I've created a class derived from FixedDocumentViewerCommandBase to add my custom action and this works when invoked from the Telerik toolbar or default context menu but it doesn't get invoked from the keyboard shortcut Ctrl-C.
So I've tried calling KeyBindings.Clear and adding a new KeyBinding. At first, I thought this had not worked at all - the default copy to clipboard was executed when I selected some text. However, what actually seems to be going on is that the KeyBindings are reset to their defaults when Mode is switched to TextSelection.
Have I missed a trick here?