-1
I’m doing a quiz with 4 answers/buttons,and with items, which are only activated if they are clicked,one of them works like this:If you want to use it you have to activate it before you answer,the person responds, if you answer wrong this item will run and will do a Refresh in the form, if the answer is right, the item does nothing. My problem is that I am unable to make the condition for the buttons, these button.click conditions do not work.
private void gunaCirclePictureBox2_Click(object sender, EventArgs e) //Evento do tal item
{
if (button1.Click || button2.Click|| button3.Click) // Esses são os botões correspondentes as respostas erradas,ou seja só se um desses botões forem clicados é que fará o refresh do form
{
this.Refresh();
}
}