valuechanged
ValueChanged is a common naming convention used in programming to denote a signal, event, or callback that is raised when a value changes. It is used across multiple languages and frameworks to notify interested parties of updates to a property's value or to a control's state.
In practice, ValueChanged is implemented as an event or callback. Subscriber code receives a notification that
ValueChanged is frequently used in user interface code to synchronize UI with user input or model data.
Considerations include whether the event should fire on user input only or also on programmatic changes, how
See also: property change notifications, INotifyPropertyChanged, Value, OnValueChanged.