Sdílet prostřednictvím


PasswordBox.PasswordChanged Událost

Definice

Vyvolá se při změně hodnoty Password vlastnosti.

public:
 event System::Windows::RoutedEventHandler ^ PasswordChanged;
public event System.Windows.RoutedEventHandler PasswordChanged;
member this.PasswordChanged : System.Windows.RoutedEventHandler 
Public Custom Event PasswordChanged As RoutedEventHandler 

Event Type

Příklady

Následující příklad ukazuje, jak zadat metodu obslužné rutiny PasswordChanged pro událost.

<PasswordBox
  Name="pwdBox" 
  MaxLength="64"
  PasswordChar="#"
  PasswordChanged="PasswordChangedHandler"  
/>

Následující příklad ukazuje odpovídající obslužnou rutinu události. V tomto případě obslužná rutina události jednoduše zvýší čítač.

private int pwChanges = 0;

void PasswordChangedHandler(Object sender, RoutedEventArgs args)
{
    // Increment a counter each time the event fires.
    ++pwChanges;
}
Private pwChanges As Integer = 0

Private Sub PasswordChangedHandler(ByVal sender As Object, ByVal args As RoutedEventArgs)
    ' Increment a counter each time the event fires.
    pwChanges += 1
End Sub

Poznámky

Informace o směrované události

Pole Identifikátor PasswordChangedEvent
Strategie směrování Bublající
Delegát RoutedEventHandler

Platí pro