I have TextBoxin my form, and I added this event to it:
private void txtValue_KeyDown(object sender, KeyEventArgs e)
{
MessageBox.Show(e.KeyData.ToString());
}
But he always types uppercase letters, although I entered a lowercase letter in the text box. See image below:

How do I get the correct display? Thank...
source
share