A class for a typical collection of a resource item.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class ResourceItemCollection : ObservableCollection<ResourceItem>, IList<ResourceItem>, ICollection<ResourceItem>, IList, ICollection, IReadOnlyList<ResourceItem>, IReadOnlyCollection<ResourceItem>, IEnumerable<ResourceItem>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
Inheritance: objectCollection<ResourceItem>ObservableCollection<ResourceItem>ResourceItemCollection
Implements:
Inherited Members
Constructors
Initializes a new instance of the ResourceItemCollection class.
public ResourceItemCollection()
Properties
Gets or sets the checked items.
public ObservableCollection<ResourceItem> CheckedItems { get; }
The checked items.
Methods
Removes all items from the collection.
protected override void ClearItems()
Overrides:
Inserts an item into the collection at the specified index.
protected override void InsertItem(int index, ResourceItem item)
The zero-based index at which item should be inserted.
The object to insert.
Overrides:
Removes the item at the specified index of the collection.
protected override void RemoveItem(int index)
The zero-based index of the element to remove.
Overrides:
Replaces the element at the specified index.
protected override void SetItem(int index, ResourceItem item)
The zero-based index of the element to replace.
itemResourceItemThe new value for the element at the specified index.
Overrides: