How can I create MdiChild forms on tabs in C #?

I have an MDIparent Forma that has some mdichild forms in it. Can you help me how to put mdichilds in Tabs, like google chrome, firefox, IE, Opera ...

+3
source share
3 answers

Here is a good article on MDI forms with TabControls: http://www.codeproject.com/KB/cs/MDITabBrowsing.aspx

+2
source

It will fail if you use MDI, if you have tabs.

MDI is designed to handle multiple forms inside the same container. However, with tabs, each form is in a different container. I see no benefit from using MDI in this scenario and avoid this.

0

- :

myForm.TopLevel=false;
myForm.TopMost=false;
tabPage1.Controls.Add(myForm);
0
source

All Articles