Class AttachableObjectCollection<TOwner, TObject>
Represents a collection of AttachableObject<T> instances.
Inheritance
System.Object
AttachableObjectCollection<TOwner, TObject>
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class AttachableObjectCollection<TOwner, TObject> : ObservableCollection<TObject> where TOwner : class where TObject : AttachableObject<TOwner>
Type Parameters
TOwner
Specifies the type of the owner of the items. |
TObject
Specifies the type of the attachable objects. |
Methods
ClearItems()
Clears the items.
Declaration
protected override void ClearItems()
InsertItem(Int32, TObject)
Inserts the item.
Declaration
protected override void InsertItem(int index, TObject item)
Parameters
System.Int32
index
The index. |
TObject
item
The item. |
RemoveItem(Int32)
Removes the item.
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
The index. |
SetItem(Int32, TObject)
Sets the item.
Declaration
protected override void SetItem(int index, TObject item)
Parameters
System.Int32
index
The index. |
TObject
item
The item. |