Click here to Skip to main content
15,888,908 members
Articles / Programming Languages / C#
Alternative
Tip/Trick

Close Application at Press of Escape Button

Rate me:
Please Sign up or sign in to vote.
4.83/5 (4 votes)
1 Jul 2011CPOL 10.7K   1   1
Your tip is useful for main forms with no close or cancel button. But most time you will want the "escape-close-form-behaviour" only with dialogs. This is the recommended way to do it: (Now i see Indivara already mentioned it in the comments)using System;using...
Your tip is useful for main forms with no close or cancel button. But most time you will want the "escape-close-form-behaviour" only with dialogs. This is the recommended way to do it: (Now i see Indivara already mentioned it in the comments)

using System;
using System.Windows.Forms;

namespace CloseByEscape
{
    static class Program
    {
        static void Main()
        {
            // Create a Dialog like form with an close (=cancel) button
            Form formDialog = new Form();
            Button button = new Button();
            button.Text = "Close";
            //button.DialogResult = DialogResult.Cancel; // you could also set the DialogResult for the Button
            formDialog.CancelButton = button; // Set the close button as CancelButton
            formDialog.Controls.Add(button);
            button.Click += delegate(object sender, EventArgs e)
             {
                 formDialog.Close();
             };
            Application.Run(formDialog);
        }
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Austria Austria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralReason for my vote of 5 I'd prefer usage of the AcceptButton... Pin
Eduard Keilholz10-Nov-11 21:25
Eduard Keilholz10-Nov-11 21:25 
Reason for my vote of 5
I'd prefer usage of the AcceptButton and CancelButton properties in stead of catching the ProcessCmdKey()

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.