c# Detect mouse clicks anywhere (Inside and Outside the Form)

11,036

Solution 1

Here is a starter, if I understood your needs of "clicking from outside the window" and Hans Passant's suggestion doesn't fit your needs. You might need to add an event handler for Form1_Click.

CAUTION: This code is provided to illustrate the concept. The threading synchronization in this sample is not 100% correct. Check the history of this answer for an attempt at a more "threading correct" one that sometimes throws exceptions. As an alternative, to get rid of all threading issues, you could have the task in StartWaitingForClickFromOutside be instead always running (aka be always in "listen" mode) as opposed to trying to detect the "within the form" or "outside the form" states and starting/stopping the loop accordingly.

using System;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            this.MouseLeave += Form1_MouseLeave;
            this.Leave += Form1_Leave;
            this.Deactivate += Form1_Deactivate;
            this.MouseEnter += Form1_MouseEnter;
            this.Activated += Form1_Activated;
            this.Enter += Form1_Enter;
            this.VisibleChanged += Form1_VisibleChanged;
        }

        private AutoResetEvent are = new AutoResetEvent(false);

        // You could create just one handler, but this is to show what you need to link to
        private void Form1_MouseLeave(object sender, EventArgs e) => StartWaitingForClickFromOutside();
        private void Form1_Leave(object sender, EventArgs e) => StartWaitingForClickFromOutside();
        private void Form1_Deactivate(object sender, EventArgs e) => StartWaitingForClickFromOutside();
        private void StartWaitingForClickFromOutside()
        {
            are.Reset();
            var ctx = new SynchronizationContext();

            var task = Task.Run(() =>
            {
                while (true)
                {
                    if (are.WaitOne(1)) break;
                    if (MouseButtons == MouseButtons.Left)
                    {
                        ctx.Send(CLickFromOutside, null);
                        // You might need to put in a delay here and not break depending on what you want to accomplish
                        break;
                    }
                }
            });
        }

        private void CLickFromOutside(object state) => MessageBox.Show("Clicked from outside of the window");
        private void Form1_MouseEnter(object sender, EventArgs e) => are.Set();
        private void Form1_Activated(object sender, EventArgs e) => are.Set();
        private void Form1_Enter(object sender, EventArgs e) => are.Set();
        private void Form1_VisibleChanged(object sender, EventArgs e)
        {
            if (Visible) are.Set();
            else StartWaitingForClickFromOutside();
        }
    }
}

If I understood you incorrectly, you might find this useful: Pass click event of child control to the parent control

Solution 2

When user clicks outside the form control, it losses the focus and you can make use of that.which means you have to use the _Deactivate(object sender, EventArgs e) event of the form control to make this work. Since which will trigger when the form loses focus and is no longer the active form. Let Form1 be the form, then the event will be like the following:

private void Form1_Deactivate(object sender, EventArgs e)
{
    // Your code here to handle this event
}
Share:
11,036
Hell Protection
Author by

Hell Protection

Updated on June 08, 2022

Comments

  • Hell Protection
    Hell Protection almost 2 years

    Is this possible to detect a mouse click (Left/Right) anywhere (Inside and Outside the Form) in an if statement? And if it's possible, how?

    if(MouseButtons.LeftButton == MouseButtonState.Pressed){
    
    ...
    
    }
    
  • Hell Protection
    Hell Protection about 6 years
    I said in an if statement and if i understand what this does, we can't identify the click type. Thanks for your answer.
  • sujith karivelil
    sujith karivelil about 6 years
    @HellProtection: I may miss understood your requirement. what you means by clicking outside the form? For example clicking start menu??
  • Hell Protection
    Hell Protection about 6 years
    I Just want to detect when my mouse click is held, anywhere. (I said "outside of the form" but i mean "not only inside"). Yes, for exemple, clicking on my background.
  • Kamlesh
    Kamlesh about 4 years
    I sm getting exception: Object synchronization method was called from an unsynchronized block of code
  • Alexandru Clonțea
    Alexandru Clonțea about 4 years
    @Kamlesh Wrote this a long time ago. On which line?
  • Tomer Shetah
    Tomer Shetah over 3 years
    Hello and welcome to SO! Please read the tour, and How do I write a good answer? For example a code snippet might help.