首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

请教,怎么设置checkedListBox的选定项

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

请问,如何设置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);

热点排行