-3

我想从清单框中添加没有在文本框中选中的项目。但文本框中没有显示任何内容。

   private void button1_Click(object sender, EventArgs e)
    {

        for (int i = 0; i < chklst_scrips.Items.Count; i++)
        {

            if (chklst_scrips.GetItemCheckState(i) == CheckState.Checked)
            {
                for (int j = 0; ;j++ )

                {

                    textBox1.Text = Convert.ToString(j);

                }

            }
        }

    }
4

2 回答 2

0

只需创建一个计数器并为其赋予初始值 0

int counter = 0;

然后,每次选中复选框时递增计数器,如下所示,例如,如果您有一个名为 checkBox1 的 chechbox:

private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
    counter++
    //Your code here
}

您将需要在您拥有的所有复选框中增加计数器

如果您使用名为checkedListBox1 的checkedListBox,您可以使用checkedListBox1.CheckedItems.Count并获取已检查项目的数量。

于 2015-12-19T06:59:18.823 回答
0

GetItemChecked 方法可用于从 CheckboxList 中查找选中的项目。

 for (int i = 0; i < checkedListBox1.Items.Count; i++)
            {
                if (checkedListBox1.GetItemChecked(i))
                {
                    string str = (string)checkedListBox1.Items[i];
                    textBox1.Text += str;
                }
            }
于 2015-12-19T07:05:25.090 回答