ClassAttachableObjectCollection<TOwner, TObject>
Class
Represents a collection of AttachableObject<T> instances.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Type Parameters:
TOwner
Specifies the type of the owner of the items.
TObject
Specifies the type of the attachable objects.
Syntax:
cs-api-definition
public class AttachableObjectCollection<TOwner, TObject> : ObservableCollection<TObject>, IList<TObject>, ICollection<TObject>, IList, ICollection, IReadOnlyList<TObject>, IReadOnlyCollection<TObject>, IEnumerable<TObject>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged where TOwner : class where TObject : AttachableObject<TOwner>
Inheritance: objectCollection<TObject>ObservableCollection<TObject>AttachableObjectCollection<TOwner, TObject>
Derived Classes:
Implements:
Inherited Members
Methods
ClearItems()
Clears the items.
Declaration
cs-api-definition
protected override void ClearItems()
Overrides
InsertItem(int, TObject)
Inserts the item.
Declaration
cs-api-definition
protected override void InsertItem(int index, TObject item)
Parameters
index
The index.
item
TObject
The item.
Overrides
RemoveItem(int)
Removes the item.
Declaration
cs-api-definition
protected override void RemoveItem(int index)
Parameters
index
The index.
Overrides
SetItem(int, TObject)
Sets the item.
Declaration
cs-api-definition
protected override void SetItem(int index, TObject item)
Parameters
index
The index.
item
TObject
The item.
Overrides