Skip to content

Commit

Permalink
🐛 修复加密提示未显示的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
BookerLiu committed Apr 17, 2023
1 parent 48fffa6 commit 4565dc5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Control/Other/PasswordDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ private void PasswordBox_PasswordChanged(object sender, RoutedEventArgs e)
if (!string.IsNullOrEmpty(appData.AppConfig.PasswordHint))
{
//显示提示信息
HintMsg.Text = "提示: " + appData.AppConfig.PasswordHint;
HintMsg.Visibility = Visibility.Visible;
}
}
Expand Down

0 comments on commit 4565dc5

Please sign in to comment.