Condividi tramite


TreeView.SelectionChanged Evento

Definizione

Si verifica quando è presente una modifica agli elementi attualmente selezionati in TreeView.

// Register
event_token SelectionChanged(TypedEventHandler<TreeView, TreeViewSelectionChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void SelectionChanged(event_token const* cookie) const;

// Revoke with event_revoker
TreeView::SelectionChanged_revoker SelectionChanged(auto_revoke_t, TypedEventHandler<TreeView, TreeViewSelectionChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<TreeView,TreeViewSelectionChangedEventArgs> SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
treeView.addEventListener("selectionchanged", onSelectionChanged);
treeView.removeEventListener("selectionchanged", onSelectionChanged);
- or -
treeView.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As TypedEventHandler(Of TreeView, TreeViewSelectionChangedEventArgs) 

Tipo evento

Commenti

Gestire l'evento TreeView.SelectionChanged per rispondere quando il set di nodi selezionati nel TreeView controllo viene modificato da un utente o a livello di codice. Il TreeView controllo genera questo evento in risposta alla modifica della selezione, che corrisponde alle modifiche apportate alle proprietà TreeView.SelectedItem, TreeView.SelectedItems e TreeView.SelectedNodes.

Si applica a