PasswordBox.PasswordChanging Event

Definition

Overloads

PasswordChanging

Occurs synchronously when the text in the password box starts to change, but before it is rendered.

PasswordChanging

Occurs synchronously when the text in the password box starts to change, but before it is rendered.

// Register
event_token PasswordChanging(TypedEventHandler<PasswordBox, PasswordBoxPasswordChangingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PasswordBox::PasswordChanging_revoker PasswordChanging(auto_revoke_t, TypedEventHandler<PasswordBox, PasswordBoxPasswordChangingEventArgs const&> const& handler) const;
public event TypedEventHandler<PasswordBox,PasswordBoxPasswordChangingEventArgs> PasswordChanging;
function onPasswordChanging(eventArgs) { /* Your code */ }
passwordBox.addEventListener("passwordchanging", onPasswordChanging);
passwordBox.removeEventListener("passwordchanging", onPasswordChanging);
- or -
passwordBox.onpasswordchanging = onPasswordChanging;
Public Custom Event PasswordChanging As TypedEventHandler(Of PasswordBox, PasswordBoxPasswordChangingEventArgs) 
<PasswordBox PasswordChanging="eventhandler"/>

Event Type

See also

Applies to