在查询时,怎样显示出CheckedListBox中已勾选的项目?
一个项目中,一窗体用CheckedListBox控件进行了录入,如一个水果中包括:苹果,芒果,龙眼。。。等。信息成功保存为:fruit.txt。
当在另一窗体时,需要查询到该CheckedListBox已勾选(true)的内容,并显示在CheckListBox中,这时该怎样使用if,for语句把已经勾选的项目显示到当前CheckListBox的当中。
请各位指点一下。
最好给一个代码示例。
程序代码:
if(checkedListBox1.CheckedItems.Count != 0) { // If so, loop through all checked items and print results. string s = ""; for(int x = 0; x <= checkedListBox1.CheckedItems.Count - 1 ; x++) { s = s + "Checked Item " + (x+1).ToString() + " = " + checkedListBox1.CheckedItems[x].ToString() + "\n"; } MessageBox.Show (s); }是不是类似这个的呢?但这并不是显示在checkedListBox的框中,而是通过:MessageBox.Show (s);显示的。
http://msdn.(v=VS.71).aspx