We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a64c2 commit 4e8c2c4Copy full SHA for 4e8c2c4
MaterialDesignThemes.Wpf/PasswordFieldAssist.cs
@@ -23,7 +23,8 @@ private static void ManagedPropertyChangedCallback(DependencyObject dependencyOb
23
if (passwordBox != null)
24
{
25
passwordBox.PasswordChanged += PasswordBoxOnPasswordChanged;
26
- ConfigureHint(passwordBox);
+ // call listener immediately, maybe passwordbox was not empty
27
+ PasswordBoxOnPasswordChanged(passwordBox, new RoutedEventArgs());
28
}
29
30
@@ -89,10 +90,5 @@ public static bool GetIsNullOrEmpty(DependencyObject element)
89
90
return (bool)element.GetValue(IsNullOrEmptyProperty);
91
92
-
93
- public static class ProgressBarAssist
94
- {
95
96
97
- }
+
98
0 commit comments