Click or drag to resize

CollectionDataBindingTItem Class

Utility class for a data binding of a collection. Often we have to react on item added/removed/inserted events and those actions have to be moved over to a new bound collection when it changes. This class takes over the task to observe the collection and registers for its events.
Inheritance Hierarchy
SystemObject
  Slash.Unity.DataBind.Core.PresentationCollectionDataBindingBase
    Slash.Unity.DataBind.Core.PresentationCollectionDataBindingTItem

Namespace:  Slash.Unity.DataBind.Core.Presentation
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public class CollectionDataBinding<TItem> : CollectionDataBindingBase

Type Parameters

TItem
Type of items in the collection.

The CollectionDataBindingTItem type exposes the following members.

Constructors
Methods
Fields
  NameDescription
Public fieldItemAdded
Action to execute when an item was added to the collection.
Public fieldItemInserted
Action to execute when an item was inserted to the collection.
Public fieldItemRemoved
Action to execute when an item was removed from the collection.
Top
See Also