System.Windows.Forms.ComboBox has two different events that a programmer can handle:
SelectionChangeCommitted - the event fires only when the user changes the selected itemSelectedIndexChanged - an event also occurs when a selection changes programmatically
Is there something similar for System.Windows.Forms.CheckBox ?
Explanation: I am looking for an event to handle that will not be fired when I programmatically select a checkbox by calling an expression of type CheckBox.Checked = true .
source share