CheckBoxList如何显示选中的项啊,而不是选中项的值
private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e) { if (checkedListBox1.CheckedItems.Count > 0) textBox1.Text = checkedListBox1.CheckedItems[0].ToString(); }