File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,14 @@ private static void ManagedPropertyChangedCallback(DependencyObject dependencyOb
1717 if ( passwordBox != null )
1818 {
1919 passwordBox . PasswordChanged -= PasswordBoxOnPasswordChanged ;
20+ passwordBox . Loaded -= PasswordBoxOnPasswordChanged ;
2021 }
2122
2223 passwordBox = dependencyPropertyChangedEventArgs . NewValue as PasswordBox ;
2324 if ( passwordBox != null )
2425 {
2526 passwordBox . PasswordChanged += PasswordBoxOnPasswordChanged ;
26- ConfigureHint ( passwordBox ) ;
27+ passwordBox . Loaded += PasswordBoxOnPasswordChanged ;
2728 }
2829 }
2930
@@ -89,10 +90,5 @@ public static bool GetIsNullOrEmpty(DependencyObject element)
8990 return ( bool ) element . GetValue ( IsNullOrEmptyProperty ) ;
9091 }
9192 }
92-
93- public static class ProgressBarAssist
94- {
95-
96-
97- }
93+
9894}
You can’t perform that action at this time.
0 commit comments