vote up 0 vote down star

Hi,

How can log a combination of key strokes in a RichTextBox such as (Ctrl + shift + X) or (Ctrl + X)? Is there any way to separate this combination to key and Modifiers? so when I want to log these, I can separate them in something like (Modifier = Ctrl , Key = X)?

thanks,

flag

70% accept rate

2 Answers

vote up 0 vote down

You just need to check the Control.ModifierKeys to see if the control and/or shift keys were used.

link|flag
vote up 0 vote down

You can intercept keypresses in child controls by overriding Form.ProcessKeyPreview(). In that method, as long as the richtextbox has the focus, you can handle the keyboard message.

link|flag
Well I am using a RichTextBox inside a WPF UserControl. My RichTextBox is a System.Windows.Controls.RichTextBox. Any idea? thanks – paradisonoir Jun 10 at 22:55
but it has PreviewKeyUp nad PreviewKeyDown. – paradisonoir Jun 10 at 22:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.