C#winformRadioButton使⽤技巧
C# winform 中同组多个RadioButton使⽤技巧⽅法,因为⽤到了,总结归类⼀下,做个记录
可以先定义⼀个⽅法,⽤来处理该组RadioButton,如下:
public void AllRadio_CheckedChanged(object sender, EventArgs e)
{
if (!((RadioButton)sender).Checked)
{
return;
}
string sText = string.Empty;
switch (((RadioButton)sender).Name)
{
case "shRadio":
sText = "查询数据";
panel5.Visible = true;
panel6.Visible = false;
break;
case "mdRadio":
sText = "修改数据";
panel6.Visible = true;
panel5.Visible = false;
break;
htmlradio多选怎么用
case "delRadio":
sText = "删除数据";
panel5.Visible = true;
panel6.Visible = false;
break;
}
groupBox3.Text = sText;
button1.Text = sText;
isModify(true);
}
定义完后,将涉及到的RadioButton的CheckChanged时间选择该⽅法即可根据button选择对应不同的RadioButton值
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论