KeyUp Event
Posted: Thu Dec 14, 2006 7:14 pm
Should the Alt Key raise a KeyUp event? In an application that I am working on I need to trap the event for when the Alt key is released.
Thanks
Thanks
Code: Select all
private void tChart1_KeyUp(object sender, KeyEventArgs e)
{
MessageBox.Show(e.Alt.ToString());
}
Code: Select all
private void tChart1_KeyUp(object sender, KeyEventArgs e)
{
MessageBox.Show(e.KeyValue.ToString());
}