开发者

How can I make MdiChild forms be in tabs in C#?

开发者 https://www.devze.com 2023-03-10 13:57 出处:网络
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 o

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);
0

精彩评论

暂无评论...
验证码 换一张
取 消