System.Windows.Forms.ComboBox
方案管理员可以处理两个不同的事件:
SelectionChangeCommitted
- event fires only when the user changes the selected itemSelectedIndexChanged
- event is also raised when the selection changes programmatically
<代码>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
.