I have two buttons in my activity, clicking any of the two of them should unhighlight the other one. The result on my work is both of them are highlighted.
private void button3_Click(object sender, EventArgs e)
{
button3.BackColor = Color.Green;
}
private void button4_Click(object sender, EventArgs e)
{
button4.BackColor = Color.Red;
}