vote up 1 vote down star

I would like to edit a graphical text (not a TextBox control) through the KeyDown event. I need to update my text string according to the KeyEventArgs (key value and modifier). I using a french keyboard for now but in the future I would like to support different keyboard layout. How can I guess the caractere typed depending the key value, the modifier and the culture info?

I don't want to use the KeyPress event for technical reason.

flag

53% accept rate
1  
KeyPress is probably the best general approach for text input, and culture-awareness is important. Great question. :) – 280Z28 Jul 20 at 20:27
2  
@Me: Wait, why don't you want to use KeyPress? That event properly accounts for the repeat delay/rate for the system? – 280Z28 Jul 20 at 20:28
I used keypress in the end and solved my technical problem. – tinmaru Jul 28 at 8:15
Consider closing this question or post your answer. – Ron Klein Jul 30 at 6:57
How can I close the question? – tinmaru Aug 12 at 9:06

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.