Class TwoWayBindingProperty<TView, TValue>
Definition
- Assembly:
- Tizen.NUI.dll
This class represents a two-way binding property between a view and its value.
public class TwoWayBindingProperty<TView, TValue> : BindingProperty<TView, TValue>
- Inheritance
Properties
View SourceAddObserver
Gets or sets the action that adds an observer to the view.
Declaration
public Action<TView, Action> AddObserver { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<, ><TView, Action> |
Getter
Gets or sets the function that retrieves the value from the view.
Declaration
public Func<TView, TValue> Getter { get; set; }
Property Value
| Type | Description |
|---|---|
| Func<, ><TView, TValue> |
RemoveObserver
Gets or sets the action that removes an observer from the view.
Declaration
public Action<TView, Action> RemoveObserver { get; set; }
Property Value
| Type | Description |
|---|---|
| Action<, ><TView, Action> |