解决方案 »

  1.   

    这是winform里面的?放到groupbox里面的?
    类似这样的代码。
    foreach(Control ctl in this.groupbox1.Controls)
    {
        if(ctl is CheckBox)
        {
            (ctl as CheckBox).Checked=true;
        }
    }
      

  2.   

    卸载panel里的,想在一个按钮里写一句代码,把所有的选择内容清空
      

  3.   

    二楼的思路是对的,你直接遍历panel的radiobutton直接flase
      

  4.   

    可以吗?
    <input type="radio" name="a">
    <input type="radio" name="a">
    <input type="radio" name="a">
    <input type="radio" name="a">
    <input type="radio" name="a">
    <input type="radio" name="a">
    <input type="radio" name="a">
    <input type="button" onclick="a()">
    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script>
    function a(){
    $("input").prop("checked", false)
    }
    </script>