CheckBoxList SelectedItemChanged

时间:2014-12-27 21:13:19

标签: c# winforms checkboxlist

我有CheckedBoxList,当我点击一个元素时,我不希望它被检查(CheckedOnClick = false)但是我想做一个动作(在我的另一个元素上显示关于这个SelectedItem的信息)形式)

我没有在CheckBoxListBox的ListBox.SelectedIndexChanged上找到类似的东西。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您需要处理CheckedListBox.ItemCheck Event

  

当项目的已检查状态发生变化时发生。

CheckedListBox继承自ListBox的{​​{3}}。

继承层次结构

  

System.Object

     

System.MarshalByRefObject

     

System.ComponentModel.Component

     

System.Windows.Forms.Control的

     

System.Windows.Forms.ListControl

     

System.Windows.Forms.ListBox

     

System.Windows.Forms.CheckedListBox

您可以查看ListBox.SelectedIndexChanged Event列表。因此,除非您使用某种第三方控件,否则它应该可用。 enter image description here