| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System.Windows;
- using System.Windows.Controls;
- namespace SHJX.Service.Common.ExtendElement
- {
- public static class PasswordHelper
- {
- public static readonly DependencyProperty PasswordProperty =
- DependencyProperty.RegisterAttached("Password",
- typeof(string), typeof(PasswordHelper),
- new FrameworkPropertyMetadata(string.Empty, OnPasswordPropertyChanged));
- public static readonly DependencyProperty AttachProperty =
- DependencyProperty.RegisterAttached("Attach",
- typeof(bool), typeof(PasswordHelper), new PropertyMetadata(false, Attach));
- private static readonly DependencyProperty IsUpdatingProperty =
- DependencyProperty.RegisterAttached("IsUpdating", typeof(bool),
- typeof(PasswordHelper));
- public static void SetAttach(DependencyObject dp, bool value)
- {
- dp.SetValue(AttachProperty, value);
- }
- public static bool GetAttach(DependencyObject dp)
- {
- return (bool)dp.GetValue(AttachProperty);
- }
- public static string GetPassword(DependencyObject dp)
- {
- return (string)dp.GetValue(PasswordProperty);
- }
- public static void SetPassword(DependencyObject dp, string value)
- {
- dp.SetValue(PasswordProperty, value);
- }
- private static bool GetIsUpdating(DependencyObject dp)
- {
- return (bool)dp.GetValue(IsUpdatingProperty);
- }
- private static void SetIsUpdating(DependencyObject dp, bool value)
- {
- dp.SetValue(IsUpdatingProperty, value);
- }
- private static void OnPasswordPropertyChanged(DependencyObject sender,
- DependencyPropertyChangedEventArgs e)
- {
- if (sender is PasswordBox passwordBox)
- {
- passwordBox.PasswordChanged -= PasswordChanged;
- if (!GetIsUpdating(passwordBox))
- {
- passwordBox.Password = (string)e.NewValue;
- }
- passwordBox.PasswordChanged += PasswordChanged;
- }
- }
- private static void Attach(DependencyObject sender, DependencyPropertyChangedEventArgs e)
- {
- if (sender is not PasswordBox passwordBox)
- return;
- if ((bool)e.OldValue)
- {
- passwordBox.PasswordChanged -= PasswordChanged;
- }
- if ((bool)e.NewValue)
- {
- passwordBox.PasswordChanged += PasswordChanged;
- }
- }
- private static void PasswordChanged(object sender, RoutedEventArgs e)
- {
- if (sender is PasswordBox passwordBox)
- {
- SetIsUpdating(passwordBox, true);
- SetPassword(passwordBox, passwordBox.Password);
- SetIsUpdating(passwordBox, false);
- }
- }
- }
- }
|