Some Keys do not raise the TextBox.KeyDown event #7844
cnelson04-beckman
started this conversation in
Ideas
Replies: 1 comment
-
This events most likely are already handled. Probably for cursor navigation in the text box. You can handle events before anything else handled them:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently the KeyDown event for the TextBox is not raised when the Key.Back, Key.Delete, Key.Right, Key.Left keys are pressed. Not too bad for the Key.Left and Key.Right, but it means that cannot capture these key press events before the value in the Text property has been changed. I have been working on a mask behavior and it is really rather inconvenient to respond to these events programmatically.
Beta Was this translation helpful? Give feedback.
All reactions