Interface IWidget<T>
A bindable data-entry control with data-state display flags.
public interface IWidget<T>
Type Parameters
T
Properties
HasChanges
If true, display a visual indication to the user.
bool HasChanges { get; set; }
Property Value
Validity
If set, display a visual indication to the user.
MessageLevel? Validity { get; set; }
Property Value
Value
Bindable typed value.
T Value { get; set; }
Property Value
- T
ValueChanged
Triggered when data is entered by the user.
EventCallback<T> ValueChanged { get; set; }