c# 把窗体嵌入到容器控件中
(VS2005)想把窗体嵌入到容器控件中,让它只能在容器范围内活动.在窗体中添加一个 splitContainer容器生成一个子窗体From from2=new From();设置子窗体为非顶级窗体form2.TopLevel = false;设置子窗体的父容器form2.Parent = this.splitContainer1.Panel2;显示for
·
(VS2005)
想把窗体嵌入到容器控件中,让它只能在容器范围内活动.
在窗体中添加一个 splitContainer容器
生成一个子窗体
From from2=new From();
设置子窗体为非顶级窗体
form2.TopLevel = false;
设置子窗体的父容器
form2.Parent = this.splitContainer1.Panel2;
显示
form2.Show();
更多推荐
已为社区贡献1条内容
所有评论(0)