Tagged Questions
1
vote
0answers
146 views
Determine the corresponding character for a virtual key (using asian IME). .Net
How can I get the the character (a char or string) given a virtual key, or virtual key combination (System.Windows.Input.Key or System.Windows.Input.KeyGesture)? I'm using an asian IME and I want to ...
1
vote
4answers
1k views
Convert received keys in PreviewKeyDown to a string
I am using PreviewKeyDown event on a window to receive all the keys from a barcode scanner. The KeyEventArgs is an enumeration and does not given me the actual string. I dont want to use TextInput as ...