公司做的一个项目,多个按钮点击 比如button 1 点击显示 列表1 button 2点击时显示 列表2 同时列表1消失,想的复杂了,用=!很简单。
public void open()
{
button2.Visible = a;
button3.Visible = a;
button4.Visible = a;
button6.Visible = b;
button7.Visible = b;
button8.Visible = b;
}
public void button1_Click(object sender, EventArgs e)
{
a =! a;
b = false;
open();
}
private void button5_Click(object sender, EventArgs e)
{
b = !b;
a = false;
open();
}
然后就点击吧!
---------------------
作者:o情花o
来源:CSDN
原文:https://blog.csdn.net/WoHongG/article/details/80867015
版权声明:本文为博主原创文章,转载请附上博文链接!
|
|