BindableVectorChangedEventHandler
BindableVectorChangedEventHandler
BindableVectorChangedEventHandler
BindableVectorChangedEventHandler
Delegate
Definition
Represents the method that will handle the VectorChanged event.
public : delegate void BindableVectorChangedEventHandler(IBindableObservableVector vector, PlatForm::Object e)public delegate void BindableVectorChangedEventHandler(IBindableObservableVector vector, Object e)Public Delegate BindableVectorChangedEventHandler(vector As IBindableObservableVector, e As Object)// This API is not available in Javascript.
Parameters
- vector
- IBindableObservableVector IBindableObservableVector IBindableObservableVector IBindableObservableVector
The object where the handler is attached.
- e
- PlatForm::Object Object Object Object
Event data, loosely typed.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
Analogous to the VectorChangedEventHandler; delegate. Although the parameter e is of type Object, you can cast it to type IVectorChangedEventArgs.
This delegate supports the creation of data bindable collections in C++. When programming with .NET, you should use ObservableCollection(Of T) or implement IList and INotifyCollectionChanged. For more info, see Binding to collections.