读书人

请教怎么设置checkedListBox的选定项

发布时间: 2012-06-10 14:03:15 作者: rapoo

请问,如何设置checkedListBox的选定项
如何把checkedListBox1中,"刘德华"那一项设置为选定状态,也就是勾选状态?

[解决办法]
如果是通过 Items 绑定数据的

C# code
checkedListBox1.SetSelected(checkedListBox1.Items.IndexOf("刘德华"), true);
[解决办法]
C# code
    checkedListBox1.SetItemChecked(checkedListBox1.Items.IndexOf("刘德华"), true);
[解决办法]
探讨

如果是通过 Items 绑定数据的
C# code
checkedListBox1.SetSelected(checkedListBox1.Items.IndexOf("刘德华"), true);

读书人网 >C#

热点推荐