I am trying to make a minesweeper type game in visual c# and I want to have different things happen when I right click and left click a button, how do I do this?
I h
Just try with button1_MouseDown event instead of button1_MouseClick Event.It will solve your problem.
button1_MouseDown
button1_MouseClick
private void button1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { //do something } if (e.Button == MouseButtons.Right) { //do something } }