单击时取消选择单选按钮列表

本文关键字:单选按钮 列表 选择 取消 单击 | 更新日期: 2023-09-27 18:31:43

我需要在单选按钮列表中取消选择单选按钮,我知道使用复选框更明智,但管理层希望取消选中单选按钮。

单击时取消选择单选按钮列表

RadioButtonList 控件是 ListItems 的集合。若要清除控件中的一个单选按钮,您需要对该特定项使用 Index。要清除控件中的所有单选按钮,有一个方法"ClearSelection()"。

  //To Unselect First Item
   RadioButtonList1.Items[0].Selected = false;
  //To unselect all Items
  RadioButtonList1.ClearSelection();

希望这将解决您的问题。

private void Clear()
    {
        if(RadioButton1.Checked)
            {
                RadioButton1.Checked = false;
            }
     }

使用这个:

RadioButton1.Checked = false;
myRadioButtonList.SelectedIndex = -1;

希望这有帮助。

您的意思是您希望单选按钮组可以选择零值?从技术上讲,您可以确保组中没有设置其检查值的无线电。 checked=""或仅删除整个属性。

请注意,这是单选组的无效状态。它就像一个既不设置为真也不为假的布尔值。它在语义上毫无意义,并且违反了 HTML 规范。

如果受限于单选组,则唯一有效的选项是包含一个表示"无其他选项"状态的单选器。

我遇到了同样的问题。 就我而言,我使用单选按钮 checkedChanged 事件自动将医疗文档字符串片段追加到富文本框控件中。 对于选择的每个单选按钮,代码段会有所不同,并且要求只能允许一个选择。 因此,单选按钮是最佳选择,而不是复选框。 问题是,如果用户想从文本框中删除所有文本片段,他/她可以手动从框中选择文本并将其删除 - 但至少一个单选按钮将保持选中状态。

因此,我发现解决此问题的最简单方法是向窗体添加一个按钮,并使用其_Click事件将指定的单选按钮检查状态设置为 false。

所以,我的代码看起来像这样...

    // for rad 1
    private void rad_NoDifferent_CheckedChanged(object sender, EventArgs e) {
        if(rad_NoDifferent.Checked) {
            rtb_GSC_Notes.AppendText(sRating_NoDiffMsg);
            } else {
            rtb_GSC_Notes.Text = rtb_GSC_Notes.Text.Replace(sRating_NoDiffMsg, sNoMsg.TrimEnd());
            }
        }

    // for rad 2
    private void rad_VeryDifferent_CheckedChanged(object sender, EventArgs e) {
        if(rad_VeryDifferent.Checked) {
            rtb_GSC_Notes.AppendText(sRating_VeryDiffMsg);
            } else {
            rtb_GSC_Notes.Text = rtb_GSC_Notes.Text.Replace(sRating_VeryDiffMsg, sNoMsg.TrimEnd());
            }
        }

    // for rad 3
    private void rad_Unsure_CheckedChanged(object sender, EventArgs e) {
        if(rad_Unsure.Checked) {
            rtb_GSC_Notes.AppendText(sRating_UnsureMsg);
            } else {
            rtb_GSC_Notes.Text = rtb_GSC_Notes.Text.Replace(sRating_UnsureMsg, sNoMsg.TrimEnd());
            }
        }
    // for button reset
    private void btn_ClearRadioButtons_Click(object sender, EventArgs e) {
        rad_NoDifferent.Checked = false;
        rad_Unsure.Checked = false;
        rad_VeryDifferent.Checked = false;
        }

最近我遇到了同样的问题,但是我找到了单选按钮的解决方案。下面是单选按钮的 ASPX 代码

<div>
    <asp:RadioButton ID="RadioButton1" GroupName="myg" onClick="clicked(this.id);" runat="server" />
    <asp:RadioButton ID="RadioButton2" GroupName="myg" onClick="clicked(this.id);"  runat="server" />
    <asp:RadioButton ID="RadioButton3" GroupName="myg" onClick="clicked(this.id);"  runat="server" />
    <asp:RadioButton ID="RadioButton4" GroupName="myg" onClick="clicked(this.id);"  runat="server" />
</div>

只需写下面的java脚本。

<script type="type/javascript">
var arr = [];
function clicked(radid) {
var ra = document.getElementById(radid);
if (arr.indexOf(radid) < 0) {
    arr.splice(0, arr.length);
    arr.push(radid);
}
else {
    arr.splice(0, arr.length);
    ra.checked = false;
}
}
</script>

希望这能解决你的目的。

WPF/C#

if (RadioBTN.IsChecked == true) {
    RadioBTN.IsChecked = false;
}