c# - How to check if a keystroke was a backspace in the textbox key press event handler -
i receiving key press event , want check if key in question backspace. what's best way that?
use e.keychar == (char)keys.back
need cast char
since keys enumeration. msdn
Comments
Post a Comment