In a container form I have menu and buttons to open ther forms.
Here I am fac
I've also got the same problem. I got an alternative solution as described below:
And did the following
private void timer1_Tick(object sender, EventArgs e)
{
if ((int)MdiChildren.GetLength(0) > 0)
{
panel1.Visible = false;
}
else
{
panel1.Visible = true;
}
}