TreeView.SelectionChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une modification est apportée aux éléments actuellement sélectionnés dans le 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)
Type d'événement
Remarques
Gérez l’événement TreeView.SelectionChanged
pour répondre lorsque l’ensemble des nœuds sélectionnés dans le TreeView
contrôle est modifié par un utilisateur ou par programmation. Le TreeView
contrôle déclenche cet événement en réponse à la modification de la sélection, qui correspond aux modifications apportées aux propriétés TreeView.SelectedItem, TreeView.SelectedItems et TreeView.SelectedNodes .