You can catch control-c with a command button, not with a keypress event.
1. In the UIR editor, add a command button to your panel.
2. Edit the button and do the following:
2.1 Give it a callback function name.
2.2 Assign a Shortcut key: Modifier Key = MenuKey (Ctrl), Key = C
2.3 In the Quick Edit window, click on the paint brush, then right-click on the button, and click on the T in the lower-right corner of the palette to make the button transparent.
2.4 Delete the label.
3. Generate the callback function for the button. (Right-click on the button and select Generate Callback Function.
4. Edit the callback function and in the EVENT_COMMIT, add whatever code, if any, you want to execute on Ctrl-C. If you want to act on it only when Ctrl-C is pressed i
n the Textbox, call GetActiveCtrl to check if the Textbox is active.
See the attached example.