I have simple app and I want to count mouse clicks anywhere on screen. I have code but it counts clicks only in area where is label.
int count = 0;
private void Form1_MouseDown(object sender, MouseEventArgs e)
{
count++;
mclickcounter.Text = count.ToString();
//mclickcounter is label
}