Represents a collection of item adapters for the Telerik controls.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
public class AddItemAdapterCollection : Freezable, IEnumerable, INotifyCollectionChanged, IDisposable
Inheritance: objectAddItemAdapterCollection
Derived Classes:
Implements:
Constructors
Initializes a new instance of the AddItemAdapterCollection class.
public AddItemAdapterCollection()
Fields
AdditionalItemPositionProperty
DependencyProperty
Identifies the AdditionalItemPosition dependency property.
public static readonly DependencyProperty AdditionalItemPositionProperty
AdditionalItemProperty
DependencyProperty
Identifies the AdditionalItem dependency property.
public static readonly DependencyProperty AdditionalItemProperty
SourceProperty
DependencyProperty
Identifies the Source dependency property.
public static readonly DependencyProperty SourceProperty
Properties
Gets or sets the additional item.
public object AdditionalItem { get; set; }
Gets or sets the position of additional item.
public AdditionalItemPosition AdditionalItemPosition { get; set; }
Gets or sets the source collection that the AddItemAdapterCollection is bound to.
public IEnumerable Source { get; set; }
Methods
CreateInstanceCore()
Freezable
Creates a new instance of the AddItemAdapterCollection class.
protected override Freezable CreateInstanceCore()
Freezable
Releases the resources used by the AddItemAdapterCollection. This method is called to free up unmanaged resources and perform cleanup tasks.
public void Dispose()
Implements:
Once this method has been called, the AddItemAdapterCollection instance should not be used. Ensure that all operations on this instance are completed before calling this method.
Disposes the resources used by the AddItemAdapterCollection.
Finalizes an instance of the AddItemAdapterCollection class.
protected override void Finalize()
Returns an enumerator that iterates through the AddItemAdapterCollection.
public IEnumerator GetEnumerator()
An enumerator that can be used to iterate through the collection.
Implements:
Raises the CollectionChanged event with the specified arguments.
protected virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
Events
Occurs when the collection has changed, such as when items are added or removed.
public event NotifyCollectionChangedEventHandler CollectionChanged
Implements: