You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TextBox control has a KeyDown event and it calls subscribers before Text is updated, but it only has this behavior when pressing backspace (as far as I've seen). Right now I have to manually handle this case.
Expected behavior is that Text should be fully up-to-date before the KeyDown event is invoked. If I typed "cat" and backspace, I would expect "ca" as the value of Text when I'm in the KeyDown event. What I currently get is "cat" still.
The text was updated successfully, but these errors were encountered:
The TextBox control has a
KeyDown
event and it calls subscribers before Text is updated, but it only has this behavior when pressing backspace (as far as I've seen). Right now I have to manually handle this case.Expected behavior is that Text should be fully up-to-date before the KeyDown event is invoked. If I typed "cat" and backspace, I would expect "ca" as the value of Text when I'm in the KeyDown event. What I currently get is "cat" still.
The text was updated successfully, but these errors were encountered: