How do I prevent code from executing in the SelectedValueChange event of a combobox when the combobox is being loaded for the first time? I need the code to execute when the user has selected a new value.
|
|
|
|
|
|
|
You have a few options.
Personally I would just add the handler after load if it is causing issues. |
||
|
|
|
If you only want some code to be executed when the user changes the combobox you can subscribe to SelectionChangeCommitted instead of SelectionChanged. "SelectionChangeCommitted " doesn't get called when the combobox selection is changed programmatically. |
||
|
|
I prefer the SelectedIndexChanged event as its behaviour seems to better model that of the underlying Win32 API making it predictable. Some of the more esoteric events offered by the controls simply do not model the behaviour that one would expect from their name. |
|||
|
|
