选中checkListBox所有项

版权声明:本文为博主原创文章,转载请发邮件到[email protected]授权。 https://blog.csdn.net/qq_33712555/article/details/84630548

选中checkListBox所有项

            for (int i = 0; i < frm.checkedListBox1.Items.Count; i++)
            {
                frm.checkedListBox1.SetItemChecked(i, true);
            }

猜你喜欢

转载自blog.csdn.net/qq_33712555/article/details/84630548
今日推荐