Class BindingBase
Definition
- Assembly:
- Tizen.NUI.dll
An abstract class that provides a BindingMode and a formatting option.
public abstract class BindingBase
- Inheritance
-
objectBindingBase
- Derived
Properties
View SourceFallbackValue
Declaration
public object FallbackValue { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
Mode
Gets or sets the mode for this binding.
Declaration
public BindingMode Mode { get; set; }
Property Value
| Type | Description |
|---|---|
| BindingMode |
StringFormat
Gets or sets the string format for this binding.
Declaration
public string StringFormat { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
TargetNullValue
Declaration
public object TargetNullValue { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
Methods
View SourceDisableCollectionSynchronization(IEnumerable)
Stops synchronization on the collection.
Declaration
public static void DisableCollectionSynchronization(IEnumerable collection)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable | collection | The collection on which to stop synchronization. |
EnableCollectionSynchronization(IEnumerable, object, CollectionSynchronizationCallback)
Declaration
public static void EnableCollectionSynchronization(IEnumerable collection, object context, CollectionSynchronizationCallback callback)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable | collection | |
| object | context | |
| CollectionSynchronizationCallback | callback |
ThrowIfApplied()
Throws an InvalidOperationException if the binding has been applied.
Declaration
protected void ThrowIfApplied()