Skip to main content

INotifyValueChanged

Interface for objects that notify subscribers when their value changes.

Namespace: ControlBee.Interfaces

Events

ValueChanging

Raised before the value changes.

event EventHandler<ValueChangedArgs>? ValueChanging;

ValueChanged

Raised after the value has changed.

event EventHandler<ValueChangedArgs>? ValueChanged;

See Also