다음을 통해 공유


ICollectionView.CurrentChanged 이벤트

정의

이 인터페이스를 구현할 때 현재 항목이 변경된 후 이 이벤트를 실행합니다.

// Register
event_token CurrentChanged(EventHandler<IInspectable> const& handler) const;

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

// Revoke with event_revoker
ICollectionView::CurrentChanged_revoker CurrentChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
event System.EventHandler<object> CurrentChanged;
function onCurrentChanged(eventArgs) { /* Your code */ }
iCollectionView.addEventListener("currentchanged", onCurrentChanged);
iCollectionView.removeEventListener("currentchanged", onCurrentChanged);
- or -
iCollectionView.oncurrentchanged = onCurrentChanged;
Event CurrentChanged As EventHandler(Of Object) 

이벤트 유형

설명

Microsoft .NET에 대해 이 인터페이스를 구현하지 마세요. ICollectionView의 설명을 참조하세요.

적용 대상