c# 把窗体嵌入到容器控件中

(VS2005)

想把窗体嵌入到容器控件中,让它只能在容器范围内活动.

在窗体中添加一个  splitContainer容器

生成一个子窗体

From from2=new From();

设置子窗体为非顶级窗体

form2.TopLevel = false;

设置子窗体的父容器

form2.Parent = this.splitContainer1.Panel2;

显示

form2.Show();

 

你可能感兴趣的:(C#,活动)