C#中获取CheckListBox选中项的值

        ///


        /// C#中获取CheckListBox选中项的值。
        ///

        /// 要被获取选中项的CheckListBox类型的对象。
        /// 返回一个ArrayList类型的对象。
        private ArrayList GetCheckedItemsText(CheckedListBox clb)
        {
            ArrayList result = new ArrayList();
            IEnumerator myEnumerator = clb.CheckedIndices.GetEnumerator();
            int index;

            while (myEnumerator.MoveNext())
            {
                index = (int)myEnumerator.Current;
                clb.SelectedItem = clb.Items[index];
                result.Add(clb.Text);
            }
            return result;
        }

转载于:https://www.cnblogs.com/bison1989/archive/2011/03/10/1979351.html

你可能感兴趣的:(c#,数据库)