PasswordBox.PasswordChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
// Register
event_token PasswordChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void PasswordChanged(event_token const* cookie) const;
// Revoke with event_revoker
PasswordBox::PasswordChanged_revoker PasswordChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler PasswordChanged;
function onPasswordChanged(eventArgs) { /* Your code */ }
passwordBox.addEventListener("passwordchanged", onPasswordChanged);
passwordBox.removeEventListener("passwordchanged", onPasswordChanged);
- or -
passwordBox.onpasswordchanged = onPasswordChanged;
Public Custom Event PasswordChanged As RoutedEventHandler
<PasswordBox PasswordChanged="eventhandler"/>