LoopingSelector.SelectionChanged 이벤트

정의

현재 선택한 항목이 변경될 때 발생합니다.

// Register
event_token SelectionChanged(SelectionChangedEventHandler const& handler) const;

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

// Revoke with event_revoker
LoopingSelector::SelectionChanged_revoker SelectionChanged(auto_revoke_t, SelectionChangedEventHandler const& handler) const;
public event SelectionChangedEventHandler SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
loopingSelector.addEventListener("selectionchanged", onSelectionChanged);
loopingSelector.removeEventListener("selectionchanged", onSelectionChanged);
- or -
loopingSelector.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As SelectionChangedEventHandler 

이벤트 유형

적용 대상