C# winfrom 使用单选按钮怎么控制其他控件的使用情况(隐藏,显示)
展开全部
控件都有个Visible属性。
例子:
if(RadioButton1.Checked==true)
{
this.textBox1.Visible=false;//控件textBox1隐藏
}
else
{
this.textBox1.Visible=true;//显示
}
例子:
if(RadioButton1.Checked==true)
{
this.textBox1.Visible=false;//控件textBox1隐藏
}
else
{
this.textBox1.Visible=true;//显示
}
追问
是写在Click事件里吗?
追答
如果你是使用RadioButton按钮,且窗口有多个RadioButton,就不要写在Click事件里面,不然要实现你的功能会很麻烦。
我一般是写在CheckedChanged事件里面。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询