c# 折叠面板控件(CollapablePanel)怎么让他同时只展开一项

因为我创建时候,有多个CollapablePanel,都是展开的,我想要同时只展开一项,或者都不展开

第1个回答  2011-09-15
List<CollapablePanel> lst = new List<CollapablePanel>;
for (i=0;i<lst.count;i++){
lst[i].Collapse = true;
}
lst[1].Collapse = false; //单独那个指定的面板

c# 折叠面板控件(CollapablePanel)怎么让他同时只展开一项
lst[1].Collapse = false; \/\/单独那个指定的面板

相似回答