Click here to Skip to main content
15,888,018 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
private void timer1_Tick(object sender, EventArgs e){

       MouseEventArgs m=e as MouseEventArgs;
        if (m.Button == MouseButtons.Right)
        {
            MessageBox.Show("dfgdf");
        }
}


It dont work How can I do it ?
Posted
Comments
Mitchell J. 10-Apr-13 7:17am    
What is the code trying to do?

1 solution

No, it won't work.
The EventArgs class is not an example of a MouseEventArrgs class, rather the other way round: MouseEventArgs derives from EventArgs. So you can cast a MouseEventArgs ro an EventArgs, but you can't go the other way because the computer cannot invent the required information.

Instead, use the Control.MouseButtons property:
C#
MouseButtons mb = MouseButtons;
if (mb == MouseButtons.Right)
    {
    Console.WriteLine(mb);
    }
 
Share this answer
 
v2
Comments
Member 9522119 10-Apr-13 7:28am    
Thanks bro ;)
OriginalGriff 10-Apr-13 7:44am    
You're welcome!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900