INotifyDataErrorInfo.ErrorsChanged 이벤트

정의

속성 또는 엔터티에 대한 유효성 검사 오류가 변경되면 발생합니다.

// Register
event_token ErrorsChanged(EventHandler<DataErrorsChangedEventArgs> const& handler) const;

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

// Revoke with event_revoker
INotifyDataErrorInfo::ErrorsChanged_revoker ErrorsChanged(auto_revoke_t, EventHandler<DataErrorsChangedEventArgs> const& handler) const;
event System.EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;
function onErrorsChanged(eventArgs) { /* Your code */ }
iNotifyDataErrorInfo.addEventListener("errorschanged", onErrorsChanged);
iNotifyDataErrorInfo.removeEventListener("errorschanged", onErrorsChanged);
- or -
iNotifyDataErrorInfo.onerrorschanged = onErrorsChanged;
Event ErrorsChanged As EventHandler(Of DataErrorsChangedEventArgs) 

이벤트 유형

적용 대상

추가 정보