gpt4 book ai didi

c# - CheckBoxList 项目已选中事件

转载 作者:行者123 更新时间:2023-11-30 14:32:28 24 4
gpt4 key购买 nike

我正在实现一个checkboxlist,如果任何项目被选中\未选中,无论是哪一个,我都想发起一个事件。如何做到这一点,请帮助。

最佳答案

根据 MSDN

<asp:RadioButtonList id="RadioButtonList1" 
OnSelectedIndexChanged="Index_Changed"
AutoPostBack="true"
runat="server"/>

void Index_Changed(Object sender, EventArgs e)
{
Label1.Text = "You selected " + RadioButtonList1.SelectedItem.Text +
" with a value of $" + RadioButtonList1.SelectedItem.Value +
".";
}

同样适用于 CheckBoxList

关于c# - CheckBoxList 项目已选中事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18486574/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com