How can I make MdiChild forms be in tabs in C#?
I have a MDIparent Forma and which has some mdichild forms in it. Can you help me some how put the mdichilds in Tabs like google chrome , firefox , IE , Op开发者_JS百科era ...
There's a good article on MDI forms with TabControls here: http://www.codeproject.com/KB/cs/MDITabBrowsing.aspx
Try something like this:
myForm.TopLevel=false;
myForm.TopMost=false;
tabPage1.Controls.Add(myForm);
精彩评论