Hi All,
How to capture Mouse Single click and mouse double click event on Commnad
Button.
I am doing as follows.
Private void Button1_MouseUp(Object sender,
System.Windows.Forms.MouseEventArgs e)
{
If (e.Clicks = 1)
{MsgBox("1");}
Else
{MsgBox("2");}
}
But each time I gets single click.
Even after clicking mouse button twice, events gets fired on first click and
I am not been able to capture double click event.
Any suggestions will be appreciated.
Thanks in advance
Sakharam Phapale