C# panel中foreach问题,加入panel中有radiobutton会把radiobutton的Text也加上去。怎么解决!
foreach(Controlcinthis.panel.Controls){if(cisCheckBox){CheckBoxchk=casCheckBox;if(chk...
foreach (Control c in this.panel.Controls)
{
if (c is CheckBox)
{
CheckBox chk = c as CheckBox;
if (chk != null && chk.Checked)
{
str += chk.Text + " ";
}
}
}
看到没有 RadioButton的值也出现了 我只要checkbox的值 展开
{
if (c is CheckBox)
{
CheckBox chk = c as CheckBox;
if (chk != null && chk.Checked)
{
str += chk.Text + " ";
}
}
}
看到没有 RadioButton的值也出现了 我只要checkbox的值 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询