共用方式為


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) 

事件類型

適用於

另請參閱