P
perspolis
Hello All
In a MDI application,I have a panel.but when I show children forms the panel
disappear.???
In a MDI application,I have a panel.but when I show children forms the panel
disappear.???
No,I put the panel inside parent form..but when I show childrend forms and
then close them,I can't see the panel??
but not in the client area (docked?)Morten Wennevik said:Not sure if I understand your scenario. You have a panel on an MdiParent,
unintended. If you can show us a small but complete code sampleIn any case, you probably have something in your code doing something
No,I put the panel inside parent form..but when I show childrend forms and
then close them,I can't see the panel??
Morten Wennevik said:Hi Persepolis,
What do you mean disappear? Did you put the panel inside the MdiParent client field?
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.
but not in the client area (docked?)Morten Wennevik said:Not sure if I understand your scenario. You have a panel on an MdiParent,unintended. If you can show us a small but complete code sampleIn any case, you probably have something in your code doing something
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?