System.Windows.Forms.ComboBox has two different events that the programmer can handle:
SelectionChangeCommitted– event fires only when the user changes the selected itemSelectedIndexChanged– event is also raised when the selection changes programmatically
Is there something similar for System.Windows.Forms.CheckBox?
Clarification:
I’m looking for an event to handle that won’t be fired when I programmatically set the checkbox by calling a statement like CheckBox.Checked = true.
Just handle the
Clickevent. Any time a checkbox is clicked, it will be toggled.