Table of Contents

Interface INotifyValueChanged<T>

Namespace
Ceres.Events
Assembly
Ceres.dll

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

newValue T

The new value to be set.