PasswordBox.PasswordChanged イベント

定義

Password プロパティの値が変化したときに発生します。

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

イベントの種類

次の例は、イベントのハンドラー メソッドを指定する方法を PasswordChanged 示しています。

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

次の例は、対応するイベント ハンドラーを示しています。 この場合、イベント ハンドラーはカウンターをインクリメントするだけです。

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

注釈

ルーティングされたイベント情報

識別子フィールド PasswordChangedEvent
ルーティング戦略 バブル
代理人 RoutedEventHandler

適用対象