private void Vencer(object sender, EventArgs e) { if ((bt1.Text == "O") && (bt2.Text == "O") && (bt3.Text == "O")) { MessageBox.Show("O Ganhou!"); } }
Even when this condition is true, the message box doesn't shows up, what am i doing wrong??
Last edited by a moderator: