我想从清单框中添加没有在文本框中选中的项目。但文本框中没有显示任何内容。
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);
}
}
}
}