本文介绍了如何收集选中列表框项目的选定索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

这是一个问题,我想动态地收集选中的列表框控件中各项的选定索引....

thnx

hi all ,

Here is the question , i want to collect the selected indices of the items in the checked list box control dynamically ....

thnx

推荐答案


private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
       {
           if (e.NewValue == CheckState.Checked)
           {
               MessageBox.Show(e.Index.ToString());
           }
       }


这篇关于如何收集选中列表框项目的选定索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 10:05