I have tried the following:
private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if((Keys) e.KeyValue == Keys.Escape)
this.Close();
}
...doesn't work.
Then i tried this:
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (e.KeyCode == Keys.Escape)
this.Close();
}
..still nothing's working.
The KeyPreview on my windows form properties is set to true...what am i doing wrong?