Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Application-Wide Left Mouse Click Event

Tags:

c#

winforms

I want to play a sound when the left mouse button is clicked anywhere in my form without having to place Mouse click events on every single control in the form. Is there a way to accomplish this?

like image 423
Spidermain50 Avatar asked Nov 14 '25 13:11

Spidermain50


1 Answers

You can detect the Windows notification before it is dispatched to the control with the focus with the IMessageFilter interface. Make it look similar to this:

public partial class Form1 : Form, IMessageFilter {
    public Form1() {
        InitializeComponent();
        Application.AddMessageFilter(this);
        this.FormClosed += delegate { Application.RemoveMessageFilter(this); };
    }

    public bool PreFilterMessage(ref Message m) {
        // Trap WM_LBUTTONDOWN
        if (m.Msg == 0x201) {
            System.Diagnostics.Debug.WriteLine("BEEP!");
        }
        return false;
    }
}

This works for any form in your project, not just the main one.

like image 135
Hans Passant Avatar answered Nov 17 '25 02:11

Hans Passant



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!