Méthode |
Description |
|
GetUpdatingPassword ( DependencyObject dp ) : bool |
|
|
HandlePasswordChanged ( object sender, RoutedEventArgs e ) : void |
Called when the value of the PasswordBox is changed in the UI. We'll update the bound property with the updated password value. This triggers the OnBoundPasswordChanged event handler. |
|
OnBindPasswordChanged ( DependencyObject dp, System.Windows.DependencyPropertyChangedEventArgs e ) : void |
Called when what the PasswordBox is bound to is changed, generally during UI initialization. We'll change our event listeners for the new PasswordBox. |
|
OnBoundPasswordChanged ( DependencyObject d, System.Windows.DependencyPropertyChangedEventArgs e ) : void |
Called when the value of the property the PasswordBox is bound to changes. We'll update the bound property with the updated password value, unless we're already in the middle of updating it because the user changed it in the UI. |
|
SetUpdatingPassword ( DependencyObject dp, bool value ) : void |
|
|