Compartir a través de


BindableVectorChangedEventHandler Delegado

Definición

Representa el método que controlará el evento VectorChanged .

public delegate void BindableVectorChangedEventHandler(IBindableObservableVector ^ vector, Platform::Object ^ e);
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.Guid(1649202401, 53255, 17329, 156, 3, 175, 77, 62, 98, 88, 196)]
public delegate void BindableVectorChangedEventHandler(IBindableObservableVector vector, object e);
Public Delegate Sub BindableVectorChangedEventHandler(vector As IBindableObservableVector, e As Object)

Parámetros

vector
IBindableObservableVector

Objeto donde se adjunta el controlador.

e
Object

Platform::Object

Datos de eventos, con tipo flexible.

Atributos

Comentarios

Análogo al delegado VectorChangedEventHandler . Aunque el parámetro e es de tipo Object, puede convertirlo al tipo IVectorChangedEventArgs.

Este delegado admite la creación de colecciones enlazables de datos en C++. Al programar con .NET, debe usar ObservableCollection(Of T) o implementar IList e INotifyCollectionChanged. Para obtener más información, consulte Enlace a colecciones.

Se aplica a

Consulte también