I put a panel in MDI parent..when I want to show a child I have to call this
fragment code to show the child
this.Panel.SendToBack();
ChildForm ch=new ChildFrom();
ch.MdiParent=this;
ch.Show();
if I don't call this.Panel.SendToBack() ,the child is showed under Panel;
when I close the child ,the panel isn't showed anymore.
Morten Wennevik said:
Not sure if I understand your scenario. You have a panel on an MdiParent,
but not in the client area (docked?)
In any case, you probably have something in your code doing something
unintended. If you can show us a small but complete code sample
demonstrating your problem maybe we can help you.
No,I put the panel inside parent form..but when I show childrend forms and
then close them,I can't see the panel??
Hi Persepolis,
What do you mean disappear? Did you put the panel inside the MdiParent
client field?