如何用C#, 在按了button之后出现checkbox

2024-12-18 00:49:01
推荐回答(3个)
回答1:

在form load事件里将checkbox的visible属性设置为false
在button click 事件里将checkbox的visible属性设置为true

回答2:

前台页面



后台
protected void button1_Click(object sender, EventArgs e)
{
this.ck1.Visible = true;
this.ck2.Visible = true;
}

回答3:

1开始设置checkBox属性Visible为true
2再点Button进入button1_Click事件
if(this.checkBox1.Visible==false)
{
this.CheckBox1.Visible=true;
}