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

  • SEARCH
  • Home
  • 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

Related Questions

I need to be able to detect whether the current language my user is
I need to detect if the user is using an iPhone 4, but I
I need to detect whether the user has pressed the dot key in the
I am developing an Android app and I am need to detect user context
I need to detect the user finger-press, there's already the tap event, but tap
I need to detect if a user is scrolled to the bottom of a
I need to detect where the user has just clicked from - as my
I need some javascript or php code to detect if user has linked directly
I need to automatically detect if a user requires a proxy to access the
I need to detect when a user arrives at the end of a readonly

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.