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 235455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:15:59+00:00 2026-05-11T20:15:59+00:00

I need to detect when the user moves the mouse over the Form and

  • 0

I need to detect when the user moves the mouse over the Form and all its child controls and also when it leaves the Form. I tried the MouseEnter and MouseLeave events of the Form, I tried the WM_MOUSEMOVE & WM_MOUSELEAVE and WM_NCMOUSEMOVE & WM_NCMOUSELEAVE pairs of windows messages but none seem to work as I want…

Most of my Form is occupied by child controls of many sorts, there’s not much client area visible. This means that if I move the mouse very quickly the mouse movement will not be detected, although the mouse is inside the Form.

For instance, I have a TextBox that is docked at the bottom and between the desktop and the TextBox, there’s only a very small border. If I quickly move the mouse from the bottom into the TextBox, the mouse movement won’t be detected, but the mouse is inside the TextBox, therefore, inside the Form.

How can I achieve what I need?

  • 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-11T20:15:59+00:00Added an answer on May 11, 2026 at 8:15 pm

    You can hook the main message loop and preprocess/postprocess any (WM_MOUSEMOVE) message what you want.

    public class Form1 : Form {
        private MouseMoveMessageFilter mouseMessageFilter;
        protected override void OnLoad(EventArgs e) {
            base.OnLoad( e );
    
            this.mouseMessageFilter = new MouseMoveMessageFilter();
            this.mouseMessageFilter.TargetForm = this;
            Application.AddMessageFilter(this.mouseMessageFilter);
        }
    
        protected override void OnClosed(EventArgs e) {
            base.OnClosed(e);
            Application.RemoveMessageFilter(this.mouseMessageFilter);
        }
    
        private class MouseMoveMessageFilter : IMessageFilter {
            public Form TargetForm { get; set; }
    
            public bool PreFilterMessage( ref Message m ) {
                int numMsg = m.Msg;
                if ( numMsg == 0x0200 /*WM_MOUSEMOVE*/)
                    this.TargetForm.Text = string.Format($"X:{Control.MousePosition.X}, Y:{Control.MousePosition.Y}");
    
                return false;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 158k
  • Answers 158k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The syntax highlighting in ICSharpCode.TextEditor is determined by the syntax… May 12, 2026 at 11:18 am
  • Editorial Team
    Editorial Team added an answer Once again big thanks to dave for posting his thoughts… May 12, 2026 at 11:18 am
  • Editorial Team
    Editorial Team added an answer You could do something like this: jQuery('.filters input:checked').each( function() {… May 12, 2026 at 11:18 am

Related Questions

I'm using the OnIdle-event for some simple animations, and it works all right. The
I am using opengl in a tilemap editor. Storing the tilemap in GL_LUMINANCE32F format,
I've written an application with the following in the Program.cs: rsCursor.Wait(); // Load the
I am displaying a scrolled data table in a web page. This table has

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.