Windows.Foundation.Collections.IObservableVector
July 31, 2021 ยท View on GitHub
-description
Notifies listeners of changes to the vector.
-remarks
The IObservableVector<T> interface enables clients to register for notification events for IVector
Observable collections are mainly useful for XAML data binding scenarios. For more info, see Data binding in depth.
Interface inheritance
IObservableVector<T> inherits IVector
.NET usage
IObservableVector<T> isn't hidden for .NET usage. However, it's more common to use the .NET ObservableCollection<T> type as a base class, or implement a List type or interface (generic or nongeneric) and INotifyCollectionChanged separately. If you do use IObservableVector<T> for .NET code, the base interfaces (and their members) project as IList<T> and IEnumerable<T>.
-examples
-see-also
IObservableMap<K,V>, Collections (C++/CX), Data binding in depth