Condividi tramite


BindableVectorChangedEventHandler Delegato

Definizione

Rappresenta il metodo che gestirà l'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)

Parametri

vector
IBindableObservableVector

Oggetto in cui è associato il gestore.

e
Object

Platform::Object

Dati dell'evento, tipizzato in modo libero.

Attributi

Commenti

Analogo al delegato VectorChangedEventHandler . Anche se il parametro e è di tipo Object, è possibile eseguirne il cast al tipo IVectorChangedEventArgs.

Questo delegato supporta la creazione di raccolte associabili ai dati in C++. Quando si esegue la programmazione con .NET, è consigliabile usare ObservableCollection(Of T) o implementare IList e INotifyCollectionChanged. Per altre info, vedi Binding alle raccolte.

Si applica a

Vedi anche