gpt4 book ai didi

C# CheckBox 列出选定的 Items.Text 到 Labels.Text

转载 作者:行者123 更新时间:2023-11-30 21:14:44 27 4
gpt4 key购买 nike

我有一个 CheckBoxList 和 5 个标签。

我希望将这些标签的文本值设置为用户单击按钮后从 CheckBoxList 中做出的 5 个选择。我将如何完成这项工作?

提前致谢。

最佳答案

  • 将事件绑定(bind)到按钮,
  • 遍历 CheckBoxListItems 属性
  • 根据listitemselected属性设置文本值

喜欢:

protected void button_Click(object sender, EventArgs e)
{
foreach (ListItem item in theCheckBoxList.Items)
{
item.Text = item.Selected ? "Checked" : "UnChecked";
}
}

要添加一个值,您可以这样做:

 foreach (ListItem item in theCheckBoxList.Items)
{
item.Text = item.Selected ? item.Value : "";
}

或在迷你报告中显示所有值:

    string test = "you've selected :";
foreach (ListItem item in theCheckBoxList.Items)
{
test += item.Selected ? item.Value + ", " : "";
}
labelResult.Text = test;

关于C# CheckBox 列出选定的 Items.Text 到 Labels.Text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6061045/

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