关于C# TabPage如何隐藏的问题
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:this.tclMain.Controls["tpgSize"].Parent=null;this.tclMain.Con...
复制代码 代码如下:
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)添加回来