码迷,mamicode.com
首页 > Windows程序 > 详细

子窗体在父窗体指定的控件中显示

时间:2015-04-02 11:48:57      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

                //设置子窗体在tabPage中显示
                Form1 f = new Form1();//子窗体
                f.TopLevel = false; 
                f.Parent = tabPage2;//指定显示容器
                f.WindowState = FormWindowState.Maximized;
                f.FormBorderStyle = FormBorderStyle.None;
                f.Show();

子窗体在父窗体指定的控件中显示

标签:

原文地址:http://blog.csdn.net/chao88552828/article/details/44829063

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!