Selector.SelectionChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando l'elemento attualmente selezionato viene modificato.
// Register
event_token SelectionChanged(SelectionChangedEventHandler const& handler) const;
// Revoke with event_token
void SelectionChanged(event_token const* cookie) const;
// Revoke with event_revoker
Selector::SelectionChanged_revoker SelectionChanged(auto_revoke_t, SelectionChangedEventHandler const& handler) const;
public event SelectionChangedEventHandler SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
selector.addEventListener("selectionchanged", onSelectionChanged);
selector.removeEventListener("selectionchanged", onSelectionChanged);
- or -
selector.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As SelectionChangedEventHandler
<selector SelectionChanged="eventhandler"/>
Tipo evento
Commenti
Nota
Per ListView e GridView: se ItemsSource implementa IItemsRangeInfo e la selezione viene modificata tramite SelectRange o DeselectRange, le proprietà AddedItems e RemovedItems non vengono impostate in SelectionChangedEventArgs. L'impostazione di queste proprietà richiede la deviazione dell'oggetto elemento. Usa invece la proprietà SelectedRanges per ottenere gli elementi.