Interface INotifyValueChanged<T>
Interface for controls that hold a value and can notify when it is changed by user input.
public interface INotifyValueChanged<T>
Type Parameters
T
- Extension Methods
Properties
Value
The value the control holds.
T Value { get; set; }
Property Value
- T
Methods
SetValueWithoutNotify(T)
Sets the value and, even if different, doesn't notify registers callbacks with a ChangeEvent<T>
void SetValueWithoutNotify(T newValue)
Parameters
newValueTThe new value to be set.