本文介绍了C#Checkedlistbox如果选中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以像在复选框中那样将.Checked ==应用于checkedlistbox?
Is it possible to apply .Checked== to checkedlistbox as in checkbox?
如果以与复选框相同的方式进行操作,则不起作用
If to do it in a way as with checkbox it not works
if(checkedListBox1.Items[2].Checked==true)
{
}
推荐答案
您需要的是方法 GetItemCheckState
。
用法如下:
if(checkedListBox1.GetItemCheckState(2) == CheckState.Checked)
{
}
这篇关于C#Checkedlistbox如果选中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!