ObservableCollection
Learn about a collection with a built-in notification mechanism.
We'll cover the following...
Overview
Imagine we’re building an application to manage notes. We can add and delete notes. We want the user interface to update itself whenever an item is added or deleted. How do we know when this occurs?
A good approach is to use events. The ObservableCollection<T>
is a ...