复制代码 代码如下:
this.tclMain.Controls["tpgSize"].Parent = null;
this.tclMain.Controls["tpgColor"].Parent = null;
上述代码将原本是tabcontrol(tclMain)中的两个TabPag(tpgSize, tpgColor)e去掉了
复制代码 代码如下:
this.tclMain.Controls.Add(tpgSize);
上述代码又将原本tabpage(tpgSize)添加回来

复制代码 代码如下:
this.tclMain.Controls["tpgSize"].Parent = null;
this.tclMain.Controls["tpgColor"].Parent = null;
上述代码将原本是tabcontrol(tclMain)中的两个TabPag(tpgSize, tpgColor)e去掉了
复制代码 代码如下:
this.tclMain.Controls.Add(tpgSize);
上述代码又将原本tabpage(tpgSize)添加回来