KeyEventArgs.KeyValue Property
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example demonstrates the use of this member. In the example, an event handler reports on the occurrence of the Control.KeyDown event. This report helps you to learn when the event occurs and can assist you in debugging. To report on multiple events or on events that occur frequently, consider replacing MessageBox.Show with Console.WriteLine or appending the message to a multiline TextBox.
To run the example code, paste it into a project that contains an instance of a type that inherits from Control, such as a Button or ComboBox. Then name the instance Control1 and ensure that the event handler is associated with the Control.KeyDown event.
private void Control1_KeyDown(Object sender, KeyEventArgs e) { System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder(); messageBoxCS.AppendFormat("{0} = {1}", "Alt", e.Alt ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "Control", e.Control ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "Handled", e.Handled ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "KeyCode", e.KeyCode ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "KeyValue", e.KeyValue ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "KeyData", e.KeyData ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "Modifiers", e.Modifiers ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "Shift", e.Shift ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "SuppressKeyPress", e.SuppressKeyPress ); messageBoxCS.AppendLine(); MessageBox.Show(messageBoxCS.ToString(), "KeyDown Event" ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
{
if (e.KeyCode == Keys.Back || e.KeyCode == Keys.Space)
{
return;
}
if (e.KeyValue > 90)
{
e.SuppressKeyPress = true;
return;
}
if (e.Shift)
{
e.SuppressKeyPress = true;
return;
}
if (Convert.ToChar(e.KeyValue) >= 'A' && Convert.ToChar(e.KeyValue) <= 'Z' ||
Convert.ToChar(e.KeyValue) >= 'a' && Convert.ToChar(e.KeyValue) <= 'z' ||
Convert.ToChar(e.KeyValue) >= '0' && Convert.ToChar(e.KeyValue) <= '9' ||
Convert.ToChar(e.KeyValue) == '-')
{
return;
}
e.SuppressKeyPress = true;
}
- 11/16/2011
- davide.cuppone
- 11/16/2011
- davide.cuppone
The way I see it is you must either map all the possible keyboard values to their characters, perform some "semi automated processing" (like get everything past "NumPad" and hope they don't select the ~ Tilde) or better yet, use the KeyPress event.
- 10/20/2010
- C Woodruff
Instead of walking away with anything remotely close to something helpful, instead I can walk away proudly knowing how to output variable values!
- 5/19/2010
- thrashee
- 10/5/2010
- Thomas Lee
This will convert numbers and letters
Also a POOR editor that puts dollar-sign zeros everywhere.
- 9/22/2010
- Chuck1411
- 10/5/2010
- Thomas Lee