开发者

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜