怎样在C#中groupbox控件显示和隐藏

2024年11月20日 00:26
有2个网友回答
网友(1):

比如这个groupbox的name是groupbox1。
那么只需要
groupbox1.visible = false;
这样groupbox1本身和他里面的控件都隐藏了

显示的话是groupbox1.visible = true;

网友(2):

groupbox.Style["display"] =" none"