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
17
17
if ( passwordBox != null )
18
18
{
19
19
passwordBox . PasswordChanged -= PasswordBoxOnPasswordChanged ;
20
+ passwordBox . Loaded -= PasswordBoxOnPasswordChanged ;
20
21
}
21
22
22
23
passwordBox = dependencyPropertyChangedEventArgs . NewValue as PasswordBox ;
23
24
if ( passwordBox != null )
24
25
{
25
26
passwordBox . PasswordChanged += PasswordBoxOnPasswordChanged ;
26
- ConfigureHint ( passwordBox ) ;
27
+ passwordBox . Loaded += PasswordBoxOnPasswordChanged ;
27
28
}
28
29
}
29
30
@@ -89,10 +90,5 @@ public static bool GetIsNullOrEmpty(DependencyObject element)
89
90
return ( bool ) element . GetValue ( IsNullOrEmptyProperty ) ;
90
91
}
91
92
}
92
-
93
- public static class ProgressBarAssist
94
- {
95
-
96
-
97
- }
93
+
98
94
}
You can’t perform that action at this time.
0 commit comments