Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Close Application at Press of Escape Button

0.00/5 (No votes)
10 Nov 2011 1  
How to close Form at pressing of Escape Button.

There are various ways to close an application by pressing the Escape button, using C#. Here are a few:



  • Way 1: Simply add the below given code in your Windows program:
  • C#
    protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
    {
        if (keyData == Keys.Escape) this.Close();
            bool res = base.ProcessCmdKey(ref msg, keyData);
        return res;
    }

  • Way 2: Write the below code in the KeyPress event of a form:
  • C#
    if (e.KeyChar == (char)27)
        this.Close();

  • Way 3: Select properties of Form and select 'KeyPreview' and change it from 'false' to 'true'. [By default, its value is false.] Then write the below code in the KeyUp event of the Form:
  • C#
    private void Form1_KeyUp(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Escape)
            this.Close();
    }

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here