Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3238092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:48:50+00:00 2026-05-17T17:48:50+00:00

I have an windows forms application, with a form that holds 2 tabcontrols and

  • 0

I have an windows forms application, with a form that holds 2 tabcontrols and a grid. I’d like to catch the pressing of esc key on any on this controls.
The question is : is it a simpler way to do that without subscribing to the keypress event on each control ?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T17:48:51+00:00Added an answer on May 17, 2026 at 5:48 pm

    You can Simply Do following.
    Implement an IMessageFilter and Handle Key Down event.
    Here is the complete Code to hook Escape Key Down.

    public class MyKeboardHook:IMessageFilter
        {
            public const int WM_KEYDOWN = 0x0100;
            public const int VK_ESCAPE = 0x1B;
            public event EventHandler EscapeKeyDown;
            public bool PreFilterMessage(ref Message m)
            {
                if (m.Msg == WM_KEYDOWN && m.WParam == new IntPtr(VK_ESCAPE))
                {
                    OnEscapeKeyPressed();
                }
                return false; //Do not Process anything
            }
            protected virtual void OnEscapeKeyDown()
            {
                if(this.EscapeKeyDown!=null)
                {
                    EscapeKeyDown(this, EventArgs.Empty);
                }
            }
        }
    

    Now you need to register this. The best place would be in Main

    static class Program
        {
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
    
                MyKeboardHook myKeboardHook = new MyKeboardHook();
                myKeboardHook.EscapeKeyDown += (e, x) =>
                                                      {
                                                          MessageBox.Show("Escape Key Pressed");
                                                      };
                Application.AddMessageFilter(myKeboardHook);
    
    
                Application.Run(new Form1());
    
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows form application that uses a Shared class to house all
I have a Windows Forms application that I wrote that does some monitoring of
I have a Windows Forms (.NET) application that can have multiple documents open simultaneously.
I have a client server based windows forms application that needs an administrator only
I have a Windows Forms application that uses some Application.Idle handlers to change the
I have a Windows Forms application that currently loads a database on startup. The
I have been developing a C# windows form application in XP. It all works
I have a Windows Forms application in C#/Visual Studio 2008 with an IE WebBrowser
I have written a C# Windows Forms application to merge the files and folders
I have a .NET 2.0 Windows Forms application. Where is the best place the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.