New to Telerik UI for WinUIStart a free 30-day trial

BindableCollection

Updated on Mar 10, 2026

BindableCollection&lt;T&gt; is INotifyCollectionChanged implementation that updates the UI on add and remove of items. It derives from ObservableCollection<T>.

The BindableCollection<T> provides the same set of features as Collection<T> , like Add and Remove methods. The features specific for this type of collection are its Move method and the CollectionChanged event.

The Move method allows you to move an item from one index in the collection to another.

Example 1: Move method usage

C#
	ObservableCollection<int> collection = new ObservableCollection<int>();
	for (int i = 0; i < 10; i++)
	{
		collection.Add(i);
	}
	//items order BEFORE the Move call: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
	collection.Move(2, 7);
	//items order AFTER the Move call: 0, 1, 3, 4, 5, 6, 7, 2, 8, 9

The CollectionChanged event is raised whenever a change appears in the collection items. This may include add, remove, replace, move or reset of the items.

Example 2: CollectionChanged event usage

C#
	public InitializeCollection()
	{
		ObservableCollection<int> collection = new ObservableCollection<int>();
		collection.CollectionChanged += Collection_CollectionChanged;		
	}
	
	private void Collection_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
	{
	}

See Also

In this article
See Also
Not finding the help you need?
Contact Support