Interview Question in Visual Studio 2005


 

Interview Question :: cSharp help please

In C# Visual Studio 2005 how do I make it so that when the mouse is no longer in the group box area something happens? Here is my code so far:

private void groupBox1_MouseHover(object sender, EventArgs e)
{
btnTopIncrease.Visible = true;

}

How do I modify this code so that this happens when the mouse is out of the area?


Thanks,
Sophie
by ksk