How do I remove the blue color that the menu has by default when I mouse over an option?
This is what I did but it does not remove the sky blue color.
private void menuoperario_MouseEnter(object sender, EventArgs e)
{
filemenu.Font = new Font("Segoe UI", 9.75f, FontStyle.Bold);
requestmenu.Font = new Font("Segoe UI", 9.75f, FontStyle.Bold);
menuoperario.Font = new Font("Segoe UI", 12.75f, FontStyle.Bold);
menuoperario.ForeColor = Color.Orange;
menuoperario.BackColor = Color.Black;
}
private void menuoperario_MouseLeave(object sender, EventArgs e)
{
filemenu.Font = new Font("Segoe UI", 9.75f, FontStyle.Bold);
requestmenu.Font = new Font("Segoe UI", 9.75f, FontStyle.Bold);
menuoperario.Font = new Font("Segoe UI", 9.75f, FontStyle.Bold);
menuoperario.ForeColor = Color.Black;
menuoperario.BackColor = Color.Transparent;
}